We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efbef2a commit b69b032Copy full SHA for b69b032
README.md
@@ -141,7 +141,7 @@ func main() {
141
m, err := migrate.NewWithDatabaseInstance(
142
"file:///migrations",
143
"postgres", driver)
144
- m.Steps(2)
+ m.Up() // or m.Step(2) if you want to explicitly set the number of migrations to run
145
}
146
```
147
source/google_cloud_storage/README.md
@@ -1,3 +1,14 @@
1
-# google_cloud_storage
+# Google Cloud Storage
2
+
3
4
+## Import
5
6
+```go
7
+import (
8
+ _ "github.com/golang-migrate/migrate/v4/source/google_cloud_storage"
9
+ )
10
+ ```
11
12
+## Connection String
13
14
`gcs://<bucket>/<prefix>`
0 commit comments