···1212 `id` integer PRIMARY KEY NOT NULL,
1313 `rkey` text NOT NULL,
1414 `title` text NOT NULL,
1515+ `image_ref` text,
1616+ `time` integer DEFAULT 0 NOT NULL,
1717+ `serves` integer,
1518 `description` text,
1619 `ingredients` text NOT NULL,
1720 `steps` text NOT NULL,
-1
libs/database/migrations/0001_icy_killmonger.sql
···11-ALTER TABLE `recipes` ADD `time` integer DEFAULT 0 NOT NULL;
···11-DROP INDEX IF EXISTS "recipes_id_unique";--> statement-breakpoint
22-DROP INDEX IF EXISTS "recipes_rkey_author_did_unique";--> statement-breakpoint
33-ALTER TABLE `recipes` ALTER COLUMN "title" TO "title" text;--> statement-breakpoint
44-CREATE UNIQUE INDEX `recipes_id_unique` ON `recipes` (`id`);--> statement-breakpoint
55-CREATE UNIQUE INDEX `recipes_rkey_author_did_unique` ON `recipes` (`rkey`,`author_did`);
···11-DROP INDEX IF EXISTS "recipes_id_unique";--> statement-breakpoint
22-DROP INDEX IF EXISTS "recipes_rkey_author_did_unique";--> statement-breakpoint
33-ALTER TABLE `recipes` ALTER COLUMN "title" TO "title" text NOT NULL;--> statement-breakpoint
44-CREATE UNIQUE INDEX `recipes_id_unique` ON `recipes` (`id`);--> statement-breakpoint
55-CREATE UNIQUE INDEX `recipes_rkey_author_did_unique` ON `recipes` (`rkey`,`author_did`);--> statement-breakpoint
66-ALTER TABLE `recipes` ADD `image_ref` text;