Files
pocket-id/backend/resources/migrations/sqlite/20250320171311_user_locale.up.sql

6 lines
106 B
MySQL
Raw Normal View History

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