Add migration to add full_name column to accounts table
parent
6621bf3d7e
commit
8bf2b8a275
|
@ -0,0 +1,10 @@
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
ALTER TABLE accounts.users
|
||||||
|
ADD COLUMN full_name TEXT;
|
||||||
|
|
||||||
|
UPDATE metadata
|
||||||
|
SET value = '2'
|
||||||
|
WHERE property = "latest_migration";
|
||||||
|
|
||||||
|
COMMIT;
|
Reference in New Issue