From e3aa047f31184f819b78d000b93c44f95c2595de Mon Sep 17 00:00:00 2001 From: Stefan Melmuk Date: Thu, 19 Sep 2024 18:18:09 +0200 Subject: [PATCH] remove backtics from postgresql migrations --- .../2024-09-04-091351_use_device_type_for_mails/down.sql | 2 +- .../2024-09-04-091351_use_device_type_for_mails/up.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;