CREATE TABLE `span_annotations` ( `id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `chart_id` integer NOT NULL, `start_time` integer NOT NULL, `end_time` integer NOT NULL, `label` text NOT NULL, `confidence` integer, `outcome` text, `notes` text, `sub_spans` text, `color` text DEFAULT '#2196F3' NOT NULL, `created_at` integer NOT NULL, FOREIGN KEY (`chart_id`) REFERENCES `charts`(`id`) ON UPDATE no action ON DELETE no action ); --> statement-breakpoint CREATE TABLE `span_label_types` ( `id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `name` text NOT NULL, `display_name` text NOT NULL, `color` text NOT NULL, `hotkey` text, `is_active` integer DEFAULT 1 NOT NULL, `sort_order` integer DEFAULT 0 NOT NULL, `created_at` integer NOT NULL ); --> statement-breakpoint CREATE UNIQUE INDEX `span_label_types_name_unique` ON `span_label_types` (`name`);