@beaker/core
Version:
Beaker browser's core software
19 lines (15 loc) • 434 B
JavaScript
module.exports = `
-- list of the active workspaces
-- deprecated
CREATE TABLE workspaces (
profileId INTEGER NOT NULL,
name TEXT NOT NULL,
localFilesPath TEXT,
publishTargetUrl TEXT,
createdAt INTEGER DEFAULT (strftime('%s', 'now')),
updatedAt INTEGER DEFAULT (strftime('%s', 'now')),
PRIMARY KEY (profileId, name),
FOREIGN KEY (profileId) REFERENCES profiles (id) ON DELETE CASCADE
);
PRAGMA user_version = 12;
`