Add Column
Current Schema
CREATE TABLE "User" (
"id" integer PRIMARY KEY,
"username" text NOT NULL,
"name" text NOT NULL,
"email" text NOT NULL UNIQUE,
"lang" text,
"timezone" text,
"nationality" text,
"country" text,
"is_active" integer,
"date_joined" text
)