-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
{ | ||
"version": "2023.12.0-alpha.7", | ||
"versionMajor": 2023, | ||
"versionMinor": 12, | ||
"version": "2024.3.0-prealpha", | ||
"versionMajor": 2024, | ||
"versionMinor": 3, | ||
"versionPatch": 0, | ||
"versionPrerelease": [ | ||
"alpha", | ||
7 | ||
"prealpha" | ||
], | ||
"release": "2023.12.0-alpha.7+20231220192300", | ||
"gitSha": "086e28c1b50d5a229fc0140ff39f4776952fb492", | ||
"gitDate": "2023-12-21T03:23:00.000Z" | ||
"release": "2024.3.0-prealpha+20240308102353", | ||
"gitSha": "92cba1b21937cb9ca770f6a339e44b0fbee04bf9", | ||
"gitDate": "2024-03-08T18:23:53.000Z" | ||
} |
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
CREATE TABLE | ||
IF NOT EXISTS MergedAsset ( | ||
-- When Exif UIDs are updated (like v5) and previously-separated assets are | ||
-- merged, this table stores those redirections. | ||
-- id is the "merge victim", the asset id that doesn't exist anymore. | ||
id INTEGER NOT NULL PRIMARY KEY, | ||
-- assetId is the "merge victor", the asset that currently exists and subsumed the prior asset. | ||
assetId INTEGER NOT NULL, | ||
FOREIGN KEY (assetId) REFERENCES Asset (id) | ||
); | ||
CREATE TABLE IF NOT EXISTS MergedAsset ( | ||
-- When Exif UIDs are updated (like v5) and previously-separated assets are | ||
-- merged, this table stores those redirections. | ||
-- id is the "merge victim", the asset id that doesn't exist anymore. | ||
id INTEGER NOT NULL PRIMARY KEY, | ||
-- assetId is the "merge victor", the asset that currently exists and subsumed the prior asset. | ||
assetId INTEGER NOT NULL, | ||
FOREIGN KEY (assetId) REFERENCES Asset (id) | ||
); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
CREATE TABLE | ||
IF NOT EXISTS Session ( | ||
sid VARCHAR(255) NOT NULL PRIMARY KEY, | ||
expired BIGINT NOT NULL, | ||
sess VARCHAR(2048) NOT NULL | ||
); | ||
CREATE TABLE IF NOT EXISTS Session ( | ||
sid VARCHAR(255) NOT NULL PRIMARY KEY, | ||
expired BIGINT NOT NULL, | ||
sess VARCHAR(2048) NOT NULL | ||
); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
CREATE TABLE | ||
IF NOT EXISTS Heartbeat ( | ||
-- used for db health checks | ||
id INTEGER NOT NULL PRIMARY KEY, | ||
name VARCHAR(255) NOT NULL, | ||
createdAt BIGINT NOT NULL, | ||
updatedAt BIGINT NOT NULL | ||
); | ||
CREATE TABLE IF NOT EXISTS Heartbeat ( | ||
-- used for db health checks | ||
id INTEGER NOT NULL PRIMARY KEY, | ||
name VARCHAR(255) NOT NULL, | ||
createdAt BIGINT NOT NULL, | ||
updatedAt BIGINT NOT NULL | ||
); | ||
|
||
CREATE UNIQUE INDEX IF NOT EXISTS heartbeat_name_udx ON Heartbeat (name); |