aboutsummaryrefslogtreecommitdiff
path: root/migrations/postgresql
diff options
context:
space:
mode:
authorStefan Melmuk <[email protected]>2024-09-19 19:18:09 +0200
committerGitHub <[email protected]>2024-09-19 19:18:09 +0200
commit0bd8f607cb47ea905f33cba22d24f243e712d652 (patch)
treee0c8fbd28c41e32c3075b522c742ed5ff5669c97 /migrations/postgresql
parent21efc0800ddfc4378a541c6d507a1cd481496575 (diff)
downloadvaultwarden-0bd8f607cb47ea905f33cba22d24f243e712d652.tar.gz
vaultwarden-0bd8f607cb47ea905f33cba22d24f243e712d652.zip
remove backtics from postgresql migrations (#4968)
Diffstat (limited to 'migrations/postgresql')
-rw-r--r--migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql2
-rw-r--r--migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/up.sql2
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;