1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-07 07:40:41 +00:00
Files
pocket-id/backend/resources/migrations/sqlite/20241004092030_audit_log_location.up.sql
2025-08-24 23:07:50 +02:00

7 lines
157 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE audit_logs ADD COLUMN country TEXT;
ALTER TABLE audit_logs ADD COLUMN city TEXT;
COMMIT;
PRAGMA foreign_keys=ON;