@beaker/core
Version:
Beaker browser's core software
17 lines (14 loc) • 396 B
JavaScript
module.exports = `
-- list of the user's installed apps
-- deprecated
CREATE TABLE apps (
profileId INTEGER NOT NULL,
name TEXT NOT NULL,
url TEXT,
updatedAt INTEGER DEFAULT (strftime('%s', 'now')),
createdAt INTEGER DEFAULT (strftime('%s', 'now')),
PRIMARY KEY (profileId, name),
FOREIGN KEY (profileId) REFERENCES profiles (id) ON DELETE CASCADE
);
PRAGMA user_version = 10;
`