CREATE TABLE `soundboard_sounds` ( `id` text PRIMARY KEY NOT NULL, `space_id` text NOT NULL, `name` text NOT NULL, `filename` text NOT NULL, `uploader_id` text, `created_at` integer NOT NULL, FOREIGN KEY (`space_id`) REFERENCES `spaces`(`id`) ON UPDATE no action ON DELETE cascade, FOREIGN KEY (`uploader_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE set null ); --> statement-breakpoint CREATE INDEX `idx_soundboard_space` ON `soundboard_sounds` (`space_id`);