Add Column
Current Schema
CREATE TABLE "core_users_groups" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"user_id" bigint NOT NULL REFERENCES "core_users" ("id") DEFERRABLE INITIALLY DEFERRED,
"group_id" integer NOT NULL REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED
)