Add Column

Cancel

Current Schema

CREATE TABLE organisation_settings  (
  organisation_id TEXT NOT NULL,
  key TEXT NOT NULL,
  value TEXT,
  updated_at DATETIME DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (organisation_id, key),
  FOREIGN KEY (organisation_id) REFERENCES organisations(id) ON DELETE CASCADE
)