diff options
author | Stefan Melmuk <[email protected]> | 2024-09-19 19:18:09 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-19 19:18:09 +0200 |
commit | 0bd8f607cb47ea905f33cba22d24f243e712d652 (patch) | |
tree | e0c8fbd28c41e32c3075b522c742ed5ff5669c97 /migrations | |
parent | 21efc0800ddfc4378a541c6d507a1cd481496575 (diff) | |
download | vaultwarden-0bd8f607cb47ea905f33cba22d24f243e712d652.tar.gz vaultwarden-0bd8f607cb47ea905f33cba22d24f243e712d652.zip |
remove backtics from postgresql migrations (#4968)
Diffstat (limited to 'migrations')
-rw-r--r-- | migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql | 2 | ||||
-rw-r--r-- | migrations/postgresql/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; |