This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues or pull requests.
score-tracker/database/migrations/2_add_account_names.sql

10 lines
No EOL
140 B
PL/PgSQL

BEGIN;
ALTER TABLE accounts.users
ADD COLUMN full_name TEXT;
UPDATE metadata
SET value = '2'
WHERE property = "latest_migration";
COMMIT;