Add Column
Current Schema
CREATE TABLE `session` (
`id` text PRIMARY KEY,
`expires_at` integer NOT NULL,
`token` text NOT NULL UNIQUE,
`created_at` integer NOT NULL,
`updated_at` integer NOT NULL,
`ip_address` text,
`user_agent` text,
`user_id` text NOT NULL,
CONSTRAINT `fk_session_user_id_user_id_fk` FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ON DELETE CASCADE
)