CREATE TABLE IF NOT EXISTS "public"."tools" (
"id" bigint NOT NULL,
"name" "text",
"description" "text",
"image_path" "text",
"preparation" "text"[],
"duration" "text"[],
"blog_url" "text",
"author" "uuid",
"created_at" timestamp with time zone DEFAULT "now"() NOT NULL,
"categories" "text"[]
);
CREATE TABLE IF NOT EXISTS "public"."tools" (
"id" bigint NOT NULL,
"name" "text",
"description" "text",
"image_path" "text",
"preparation" "text"[],
"duration" "text"[],
"blog_url" "text",
"author" "uuid",
"created_at" timestamp with time zone DEFAULT "now"() NOT NULL,
"categories" "text"[]
);