diff options
Diffstat (limited to 'schema/migrations')
-rw-r--r-- | schema/migrations/0011.sql | 6 | ||||
-rw-r--r-- | schema/migrations/0012.sql | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/schema/migrations/0011.sql b/schema/migrations/0011.sql index 763ea58..4b0ca61 100644 --- a/schema/migrations/0011.sql +++ b/schema/migrations/0011.sql @@ -1,2 +1,6 @@ ALTER TABLE users -ADD COLUMN `weight_unit` VARCHAR(255) DEFAULT 'kg'; +DROP COLUMN flightaware_username, +DROP COLUMN flightaware_apikey; + +ALTER TABLE users +ADD COLUMN `channels` TEXT AFTER syndication_targets; diff --git a/schema/migrations/0012.sql b/schema/migrations/0012.sql new file mode 100644 index 0000000..763ea58 --- /dev/null +++ b/schema/migrations/0012.sql @@ -0,0 +1,2 @@ +ALTER TABLE users +ADD COLUMN `weight_unit` VARCHAR(255) DEFAULT 'kg'; |