mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-12-04 11:19:22 +00:00
Gent Semaj
36e0667ed2
* Add Email column to Account table * Add LastPasswordReset timestamp column, missing DB version bump
9 lines
331 B
SQL
9 lines
331 B
SQL
BEGIN TRANSACTION;
|
|
-- New Columns
|
|
ALTER TABLE Accounts ADD Email TEXT DEFAULT '' NOT NULL;
|
|
ALTER TABLE Accounts ADD LastPasswordReset INTEGER DEFAULT 0 NOT NULL;
|
|
-- Update DB Version
|
|
UPDATE Meta SET Value = 6 WHERE Key = 'DatabaseVersion';
|
|
UPDATE Meta SET Value = strftime('%s', 'now') WHERE Key = 'LastMigration';
|
|
COMMIT;
|