CREATE TABLE `license_activation` ( `id` text PRIMARY KEY NOT NULL, `created_at` integer NOT NULL, `updated_at` integer NOT NULL, `fingerprint` text NOT NULL, `license` text, `license_activated_at` integer ); --> statement-breakpoint CREATE UNIQUE INDEX `license_activation_fingerprint_unique` ON `license_activation` (`fingerprint`);