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