mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-12-23 03:40:05 +00:00
5 lines
102 B
SQL
5 lines
102 B
SQL
BEGIN TRANSACTION;
|
|
-- New Column
|
|
ALTER TABLE Accounts ADD Email TEXT DEFAULT '' NOT NULL;
|
|
COMMIT;
|