7 lines
410 B
SQL
7 lines
410 B
SQL
-- Per-profile logbook database. Each profile can target its own logbook:
|
|
-- the local SQLite file, or a specific shared MySQL database. Switching the
|
|
-- active profile switches the logbook accordingly. Stored as a small JSON
|
|
-- document {backend, host, port, user, password, database}; empty = inherit
|
|
-- the default (local SQLite).
|
|
ALTER TABLE station_profiles ADD COLUMN db_config TEXT NOT NULL DEFAULT '';
|