This commit is contained in:
2026-07-15 18:47:18 +07:00
parent 3acf46964b
commit 686b9b2e92
6 changed files with 39 additions and 38 deletions
+28 -13
View File
@@ -1,13 +1,28 @@
d = Dict(
"hello"=> 555,
"world"=> Dict(
"name"=> "ton"
)
)
x = 55
@info "YiemAgent think() 1 " d x @__LINE__
"""
CREATE TABLE "public"."wine" (
"wine_id" uuid DEFAULT gen_random_uuid() NOT NULL,
"seo_name" character varying(128) NOT NULL,
"wine_name" character varying(128) NOT NULL,
"winery" character varying(128) NOT NULL,
"vintage" integer NOT NULL,
"region" character varying(128) NOT NULL,
"country" character varying(128) NOT NULL,
"wine_type" character varying(128) NOT NULL,
"grape" character varying(128) NOT NULL,
"serving_temperature" character varying(128) NOT NULL,
"intensity" integer NULL,
"sweetness" integer NULL,
"tannin" integer NULL,
"acidity" integer NULL,
"fizziness" integer NULL,
"tasting_notes" text NULL,
"image_url" jsonb NULL,
"manufacturer_sku" text NULL,
"note" text NULL,
"other_attributes" jsonb NULL,
"created_time" timestamp with time zone DEFAULT CURRENT_TIMESTAMP NULL,
"updated_time" timestamp with time zone DEFAULT CURRENT_TIMESTAMP NULL,
"description" text NULL,
PRIMARY KEY (wine_id)
);
"""