1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 19:09:45 +00:00
Files
pocket-id/backend/resources/migrations/sqlite/20250320171311_user_locale.down.sql
2025-08-24 23:07:50 +02:00

6 lines
102 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE users DROP COLUMN locale;
COMMIT;
PRAGMA foreign_keys=ON;