dbmate
dbmate copied to clipboard
:rocket: A lightweight, framework-agnostic database migration tool.
I am encrypting a set of fields with `AES_ENCRYPT` and I would like to use an environment variable to specify the secret key instead of hard-coding it. Example: ``` UPDATE...
# Context When running migrations, some statements might take a little bit longer which results in a statement timeout which is usually either a default value or a global value...
Hi, as far as I can tell, currently there is now explicit lock applied during migrations. That would mean that it is dangerous to run migrations in a concurrent setting,...
Hi, When I `dbmate migrate` the schema dump includes the current `AUTO INCREMENT` of each table, which is bad since if I want to import the schema as is (without...
Hello, I am trying to migrate stored procedures with dbmate but seems like it doesn't support it. I am getting below error while executing dbmate up command: **sql file content...
This makes it so that the `caching_sha2_password ` plugin is included so connections to Mysql > 8.0 can succeed.
When trying to use the dbmate container against a mysql > 8.0 compliant server this error is given whenever a schema dump is requested: ``` docker run --env-file=dev.env --rm -it...
Resolves https://github.com/amacneil/dbmate/issues/249 for flyway Some notes which could change the ticks: - `Timestamp-versioned migration files` I checked this one because a developer can put the timestamp in their migration file...
Used this evening to quickly implement #18 This now allows the following: - `dbmate migrate ` or `dbmate up ` → migrates until \ is reached - `dbmate rollback `...