CREATE TABLE `anthropic_oauth_tokens` ( `user_id` text PRIMARY KEY NOT NULL, `access_token` text NOT NULL, `refresh_token` text NOT NULL, `expires_at` text NOT NULL, `updated_at` text NOT NULL, FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade );