From 0bd8f607cb47ea905f33cba22d24f243e712d652 Mon Sep 17 00:00:00 2001 From: Stefan Melmuk <509385+stefan0xC@users.noreply.github.com> Date: Thu, 19 Sep 2024 19:18:09 +0200 Subject: [PATCH] remove backtics from postgresql migrations (#4968) --- .../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;