CREATE TABLE `device_info` ( `id` text PRIMARY KEY NOT NULL, `created_at` integer NOT NULL, `updated_at` integer NOT NULL, `fingerprint` text NOT NULL, `fingerprint_quality` text NOT NULL, `license` text, `license_activated_at` integer ); --> statement-breakpoint CREATE UNIQUE INDEX `device_info_fingerprint_unique` ON `device_info` (`fingerprint`);--> statement-breakpoint CREATE TABLE `todo` ( `id` text PRIMARY KEY NOT NULL, `created_at` integer NOT NULL, `updated_at` integer NOT NULL, `title` text NOT NULL, `completed` integer DEFAULT false NOT NULL );