Add Column
Current Schema
CREATE TABLE `draft_tokens` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`draft_id` integer NOT NULL,
`manager_id` integer NOT NULL,
`round` integer DEFAULT 1 NOT NULL,
`token` text NOT NULL,
`expires_at` text,
`created_at` text DEFAULT (datetime('now')),
FOREIGN KEY (`draft_id`) REFERENCES `drafts`(`id`) ON UPDATE no action ON DELETE no action,
FOREIGN KEY (`manager_id`) REFERENCES `managers`(`id`) ON UPDATE no action ON DELETE no action
)