This website requires JavaScript.
Explore
Help
Sign In
status-im
/
migrate
mirror of
https://github.com/status-im/migrate.git
Watch
2
Star
0
Fork
You've already forked migrate
0
Code
Issues
Projects
Releases
Wiki
Activity
16f2b1736e
migrate
/
cli
/
build_spanner.go
8 lines
100 B
Go
Raw
Normal View
History
Unescape
Escape
Add Spanner driver 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.
2017-06-04 20:13:49 +00:00
// +build spanner
package
main
import
(
Update imports to reference fork. Thanks `make rewrite-import-paths`!
2018-01-19 18:56:55 +00:00
_
"github.com/golang-migrate/migrate/database/spanner"
Add Spanner driver 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.
2017-06-04 20:13:49 +00:00
)