mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2025-07-05 17:41:04 +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;
|