Changeset 0.28.0 (#172)
This commit is contained in:
12
server/database/migrations/sqlite/016_surfaces.sql
Normal file
12
server/database/migrations/sqlite/016_surfaces.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
-- Chat Switchboard — 016 Surfaces (SQLite)
|
||||
-- Consolidated v0.28.0: was missing from SQLite entirely
|
||||
|
||||
CREATE TABLE IF NOT EXISTS surface_registry (
|
||||
id TEXT PRIMARY KEY,
|
||||
title TEXT NOT NULL,
|
||||
manifest TEXT NOT NULL DEFAULT '{}',
|
||||
enabled INTEGER NOT NULL DEFAULT 1,
|
||||
source TEXT NOT NULL DEFAULT 'core',
|
||||
installed_at TEXT NOT NULL DEFAULT (datetime('now')),
|
||||
updated_at TEXT NOT NULL DEFAULT (datetime('now'))
|
||||
);
|
||||
Reference in New Issue
Block a user