CREATE TABLE `secret_sources` ( `id` text PRIMARY KEY NOT NULL, `user_id` text NOT NULL, `name` text NOT NULL, `kind` text DEFAULT 'onepassword-connect' NOT NULL, `base_url` text NOT NULL, `token` text NOT NULL, `shared` integer DEFAULT false NOT NULL, `created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL, `updated_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL, FOREIGN KEY (`user_id`) REFERENCES `users`(`id`) ON UPDATE no action ON DELETE cascade ); --> statement-breakpoint CREATE INDEX `idx_secret_sources_user` ON `secret_sources` (`user_id`);