Add migration to add full_name column to accounts table

main
sudoer777 2021-12-01 11:13:37 -07:00
parent 6621bf3d7e
commit 8bf2b8a275
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
BEGIN;
ALTER TABLE accounts.users
ADD COLUMN full_name TEXT;
UPDATE metadata
SET value = '2'
WHERE property = "latest_migration";
COMMIT;