mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
* Allow to run server side postgres migration * Automate migration creation * Check if sql-migrate exists
8 lines
319 B
YAML
8 lines
319 B
YAML
# a configuration for sql-migrate tool. We don't need to configure production,
|
|
# because we programmatically connect to the database and run migrations.
|
|
# Its main purpose is to generate migrations using `sql-migrate new`
|
|
|
|
development:
|
|
dialect: postgres
|
|
datasource: dbname=dnote sslmode=disable
|
|
dir: ./migrations
|