Skip to content

Commit 2d6f0e2

Browse files
authored
Merge branch 'master' into update-spanner-to-1.27
2 parents 5798784 + b69b032 commit 2d6f0e2

29 files changed

+44
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func main() {
141141
m, err := migrate.NewWithDatabaseInstance(
142142
"file:///migrations",
143143
"postgres", driver)
144-
m.Steps(2)
144+
m.Up() // or m.Step(2) if you want to explicitly set the number of migrations to run
145145
}
146146
```
147147

internal/cli/build_aws-s3.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build aws_s3
12
// +build aws_s3
23

34
package cli

internal/cli/build_bitbucket.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build bitbucket
12
// +build bitbucket
23

34
package cli

internal/cli/build_cassandra.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build cassandra
12
// +build cassandra
23

34
package cli

internal/cli/build_clickhouse.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build clickhouse
12
// +build clickhouse
23

34
package cli

internal/cli/build_cockroachdb.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build cockroachdb
12
// +build cockroachdb
23

34
package cli

internal/cli/build_firebird.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build firebird
12
// +build firebird
23

34
package cli

internal/cli/build_github.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build github
12
// +build github
23

34
package cli

internal/cli/build_github_ee.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build github
12
// +build github
23

34
package cli

internal/cli/build_gitlab.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build gitlab
12
// +build gitlab
23

34
package cli

0 commit comments

Comments
 (0)