Browse Source

remove backtics from postgresql migrations

pull/4968/head
Stefan Melmuk 7 months ago
parent
commit
e3aa047f31
No known key found for this signature in database GPG Key ID: 817020C608FE9C09
  1. 2
      migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql
  2. 2
      migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/up.sql

2
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;

2
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;

Loading…
Cancel
Save