1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-07-12 22:21:40 +02:00
Commit Graph

5 Commits

Author SHA1 Message Date
7a75c2d004 Keep indices when dropping/renaming columns. 2014-02-18 18:32:04 +07:00
a200c7a0a2 altered migration to set default github domain and url 2014-02-17 23:08:06 -07:00
8ce87f0d2c More tests for alter columns migration
Also change the way we handle columns rename migration.
SQLite restrict column addition not to have PRIMARY KEY and/or
UNIQUE attribute, so we have to change from:

add new column -> migrate data from old column to new column ->
rename old table -> create new table with old columns removed ->
migrate data from old table to the new table -> drop old table

to directly:
rename old table -> create new table with renamed columns ->
migrate data from old table to the new table -> drop old table
2014-02-16 00:56:17 +07:00
4465b2654d Fix migration step not checked against current version.
Add tests for DropColumns.
2014-02-15 22:17:22 +07:00
d2eed594ea Migration Driver for SQLite
Need more tests.
2014-02-15 19:29:53 +07:00