Files
pocket-id/backend/resources/migrations/sqlite/20250421221059_add_device_codes.down.sql

6 lines
94 B
MySQL
Raw Normal View History

PRAGMA foreign_keys=OFF;
BEGIN;
DROP TABLE oidc_device_codes;
COMMIT;
PRAGMA foreign_keys=ON;