Add Column
Current Schema
CREATE TABLE "core_user_services" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"is_active" bool NOT NULL,
"config" text NOT NULL CHECK ((JSON_VALID("config") OR "config" IS NULL)),
"created_at" datetime NOT NULL,
"updated_at" datetime NOT NULL,
"service_id" bigint NOT NULL REFERENCES "core_services" ("id") DEFERRABLE INITIALLY DEFERRED,
"user_id" varchar(8) NOT NULL REFERENCES "core_users" ("uuid") DEFERRABLE INITIALLY DEFERRED
)