-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add database migration #305
Conversation
ca66d20
to
89fb38c
Compare
} | ||
|
||
if let Some(version) = version { | ||
if version > migrator.current_version()?.unwrap_or(0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm worried whether this will attempt to recreate all the tables if this is used with an existing database (that uses the config
table to track its version). Should we include a check to look for a database_version
entry in the config
table before assuming an empty database?
Thanks so much for writing this up! I really like this. If we can make sure that the |
Yes I forgot to mention that. schemamama is using it's own table (database_versions) to keep track of applied database migrations. So deploying this will require one last manual action; creating that table by hand and inserting version 1 to table. This will ensure our database is at version 1. Otherwise it will just fail to migrate first version since tables are already exist. There is one more thing. We can also split database queries and store in another location (but I don't think it's necessary). Also instead of using incremental values for database version we can use epoch (I don't think this is necessary or useful either). |
Hmm, i'm nervous about this, but i guess it would be alright if we had a script for it. Something like this? -- these queries taken from `schemamama_postgres`'s implementation
CREATE TABLE IF NOT EXISTS database_versions (version BIGINT PRIMARY KEY);
INSERT INTO database_versions (version) VALUES (1);
-- clean up the old version value
DELETE FROM config WHERE name = 'database_version';
I agree, i don't think there's much value to these. Having the queries next to their version number and description is helpful, and i feel like separating them out would just create more line count with nothing to gain for it. As for the version numbers, i'm fine with just having an incremental identifier - it plays nice with the library we're using, and doing anything on top of that feels like it would complicate things. |
Exactly like that! |
Coming back to this PR, there are still some problems:
|
Fixed merge conflict, Vagrantfile was already updated.
Schemama is already doing this, schemama is assuming there is no migration installed in database if there is no |
I guess looking at it like this, it's fine. One last breaking change before stability, so to speak, like when a Rust feature is stabilized. In that case, I'd like to make sure you're the one to deploy this, since you're more comfortable with making changes to the database. Otherwise, this PR is good to go. |
@QuietMisdreavus successfully deployed (created database_versions table and added our first version: 1, and tested migrate command). I also added |
Closes: #303
This patch adds a database migration and
cratesfyi database migrate
command. It will allow us to upgrade or downgrade our database to a newer or older version.By default
cratesfyi database migrate
command will upgrade database to newest version. It is also possible to usecratesfyi database migrate <VERSION>
. Specifying aVERSION
will bring database to specifiedVERSION
(upgrade or downgrade if necessary).Adding a new migration is easy and can be done by adding a new migration to migrations vector with migration macro:
I checked bunch of migration libraries and decided to use
schemamama
. It is super lightweight, extensible and have no dependency, allowing us to use our own database connection and defining our own migration types if we need them in future.