mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 15:00:06 +00:00
19 lines
636 B
MySQL
19 lines
636 B
MySQL
|
/*
|
||
|
It is recommended in the SQLite manual to turn off
|
||
|
foreign keys when making schema changes that involve them
|
||
|
*/
|
||
|
PRAGMA foreign_keys=OFF;
|
||
|
BEGIN TRANSACTION;
|
||
|
-- New table to store auth cookies
|
||
|
CREATE TABLE Auth (
|
||
|
AccountID INTEGER NOT NULL,
|
||
|
Cookie TEXT NOT NULL,
|
||
|
Expires INTEGER DEFAULT 0 NOT NULL,
|
||
|
FOREIGN KEY(AccountID) REFERENCES Accounts(AccountID) ON DELETE CASCADE,
|
||
|
UNIQUE (AccountID)
|
||
|
);
|
||
|
-- Update DB Version
|
||
|
UPDATE Meta SET Value = 5 WHERE Key = 'DatabaseVersion';
|
||
|
UPDATE Meta SET Value = strftime('%s', 'now') WHERE Key = 'LastMigration';
|
||
|
COMMIT;
|
||
|
PRAGMA foreign_keys=ON;
|