CREATE TABLE `projects` ( `archived_at` text, `created_at` text NOT NULL, `description` text DEFAULT '' NOT NULL, `id` text PRIMARY KEY NOT NULL, `name` text NOT NULL, `status` text DEFAULT 'active' NOT NULL CHECK (status IN ('active', 'archived')), `updated_at` text NOT NULL ); --> statement-breakpoint CREATE UNIQUE INDEX `projects_name_unique` ON `projects` (`name`);--> statement-breakpoint CREATE TABLE IF NOT EXISTS `schema_migrations` ( `applied_at` text NOT NULL, `checksum` text NOT NULL, `id` text PRIMARY KEY NOT NULL );