mirror of
https://github.com/status-im/migrate.git
synced 2025-02-23 16:28:08 +00:00
Support for Google Cloud Spanner, closes #172. Includes example migrations ported over from the PostgreSQL driver. In all examples provided by Google I’ve come across, camel-case is used for table names, columns, etc. Hence the examples use this naming convention.
8 lines
92 B
Go
8 lines
92 B
Go
// +build spanner
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "github.com/mattes/migrate/database/spanner"
|
|
)
|