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