CREATE TABLE `invite` ( `id` text PRIMARY KEY NOT NULL, `token` text NOT NULL, `expiration_date` integer NOT NULL, `creator_id` text NOT NULL, FOREIGN KEY (`creator_id`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE cascade ); --> statement-breakpoint CREATE UNIQUE INDEX `invite_token_unique` ON `invite` (`token`);