CREATE TABLE `annotation_types` ( `id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `name` text NOT NULL, `display_name` text NOT NULL, `color` text NOT NULL, `category` text NOT NULL, `icon` text, `is_active` integer DEFAULT 1 NOT NULL, `created_at` integer NOT NULL ); --> statement-breakpoint CREATE UNIQUE INDEX `annotation_types_name_unique` ON `annotation_types` (`name`);