UNPKG

@beaker/core

Version:
15 lines (12 loc) 309 B
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; `