Files
pocket-id/backend/resources/migrations/sqlite/20251110000000_storage_table.down.sql

7 lines
85 B
MySQL
Raw Normal View History

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