Browse Source

remove backtics from postgresql migrations (#4968)

pull/4971/head
Stefan Melmuk 2 weeks ago
committed by GitHub
parent
commit
0bd8f607cb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  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