Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAllow 'Down' migrations in .sql files #530
Conversation
|
I would do three things:
|
What do you mean? -- up migration
insert into ...
-- down migration
-- nothing to doDo you think that should fail? Why? |
|
It should keep current behavior. Where you can't run down migrations on SQL files. |
|
I'm still a little bit confused (and my english skills lags I totally understand that we can't infer down migrations from up migrations, this wasn't my point |
|
I'm probably describing it wrong. It should fail if running down migrations and there is no down migration comment. |
|
OK I dont think so -- up migration
insert into ...should work, imo edit: example 1 -- up migration
insert into ...same as example 1 insert into ...example 2 -- down migration
delete from ...example 3 -- down migration
delete from ...
-- up migration
insert into ...example 4 -- down migration
delete from ...
-- up migration |

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

TheJetOU commentedDec 7, 2019
This commit allows SQL files to have down migrations via comments.
Anything below
-- Up migrationwill be treated asup, anythingbelow a
-- Down migrationwill be treated asdown.A migration file can have either or both.