@beaker/core
Version:
Beaker browser's core software
15 lines (12 loc) • 309 B
JavaScript
module.exports = `
-- log of the user's app installations
-- deprecated
CREATE TABLE apps_log (
profileId INTEGER NOT NULL,
name TEXT NOT NULL,
url TEXT,
ts INTEGER DEFAULT (strftime('%s', 'now')),
FOREIGN KEY (profileId) REFERENCES profiles (id) ON DELETE CASCADE
);
PRAGMA user_version = 11;
`