8 lines
No EOL
163 B
SQL
Executable file
8 lines
No EOL
163 B
SQL
Executable file
CREATE TEMPORARY TABLE "fruits" (
|
|
"id" serial,
|
|
"tree_id" int,
|
|
"common_name" varchar,
|
|
"created_at" timestamp,
|
|
"updated_at" timestamp,
|
|
PRIMARY KEY(id)
|
|
); |