diff --git a/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql b/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql index dd0394ee..72fc20e8 100644 --- a/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql +++ b/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql @@ -1 +1 @@ -ALTER TABLE `twofactor_incomplete` DROP COLUMN `device_type`; +ALTER TABLE twofactor_incomplete DROP COLUMN device_type; diff --git a/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/up.sql b/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/up.sql index 423e16c1..f0641cb2 100644 --- a/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/up.sql +++ b/migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/up.sql @@ -1 +1 @@ -ALTER TABLE `twofactor_incomplete` ADD COLUMN `device_type` INTEGER NOT NULL; +ALTER TABLE twofactor_incomplete ADD COLUMN device_type INTEGER NOT NULL;