Files
pocket-id/backend/resources/migrations/sqlite/20240924202721_user_groups.down.sql

7 lines
118 B
MySQL
Raw Normal View History

PRAGMA foreign_keys=OFF;
BEGIN;
2024-10-02 08:43:44 +02:00
DROP TABLE user_groups;
DROP TABLE user_groups_users;
COMMIT;
PRAGMA foreign_keys=ON;