forked from mystiq/dex
21 lines
382 B
YAML
21 lines
382 B
YAML
|
postgres:
|
||
|
dialect: postgres
|
||
|
datasource: dbname=test sslmode=disable
|
||
|
dir: test-migrations
|
||
|
|
||
|
mysql:
|
||
|
dialect: mysql
|
||
|
datasource: root@/test?parseTime=true
|
||
|
dir: test-migrations
|
||
|
|
||
|
mysql_noflag:
|
||
|
dialect: mysql
|
||
|
datasource: root@/test
|
||
|
dir: test-migrations
|
||
|
|
||
|
sqlite:
|
||
|
dialect: sqlite3
|
||
|
datasource: test.db
|
||
|
dir: test-migrations
|
||
|
table: migrations
|