File tree 3 files changed +10
-1
lines changed
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
1
SOURCE ?= file go_bindata github github_ee bitbucket aws_s3 google_cloud_storage godoc_vfs gitlab
2
- DATABASE ?= postgres mysql redshift cassandra spanner cockroachdb yugabytedb clickhouse mongodb sqlserver firebird neo4j pgx pgx5 rqlite
2
+ DATABASE ?= postgres mysql redshift cassandra spanner cockroachdb yugabytedb clickhouse mongodb sqlserver firebird neo4j pgx pgx5 rqlite opensearch
3
3
DATABASE_TEST ?= $(DATABASE ) sqlite sqlite3 sqlcipher
4
4
VERSION ?= $(shell git describe --tags 2>/dev/null | cut -c 2-)
5
5
TEST_FLAGS ?=
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ Database drivers run migrations. [Add a new database?](database/driver.go)
44
44
* [ Firebird] ( database/firebird )
45
45
* [ MS SQL Server] ( database/sqlserver )
46
46
* [ rqlite] ( database/rqlite )
47
+ * [ OpenSearch] ( database/opensearch )
47
48
48
49
### Database URLs
49
50
Original file line number Diff line number Diff line change
1
+ //go:build opensearch
2
+ // +build opensearch
3
+
4
+ package cli
5
+
6
+ import (
7
+ _ "github.com/golang-migrate/migrate/v4/database/opensearch"
8
+ )
You can’t perform that action at this time.
0 commit comments