Add migration to add full_name column to accounts table

This commit is contained in:
sudoer777 2021-12-01 11:13:37 -07:00
parent 6621bf3d7e
commit 8bf2b8a275

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;