Add Column
Current Schema
CREATE TABLE "user_accounts" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"platform" varchar(20) NOT NULL,
"account_identifier" varchar(255) NOT NULL,
"is_active" bool NOT NULL,
"created_at" datetime NOT NULL,
"updated_at" datetime NOT NULL,
"user_id" bigint NOT NULL REFERENCES "core_users" ("id") DEFERRABLE INITIALLY DEFERRED
)