Add Column

Cancel

Current Schema

CREATE TABLE "core_systemmessagetemplate"  (
  "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
  "message_type" varchar(20) NOT NULL UNIQUE,
  "subject" varchar(200) NOT NULL,
  "message" text NOT NULL,
  "created_at" datetime NOT NULL,
  "updated_at" datetime NOT NULL
)