mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2025-12-11 00:10:49 +00:00
Add Email and LastPasswordReset columns to Account table (#299)
* Add Email column to Account table * Add LastPasswordReset timestamp column, missing DB version bump
This commit is contained in:
8
sql/migration5.sql
Normal file
8
sql/migration5.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user