platform/angel_orm_postgres/test/migrations/fruit.sql

8 lines
163 B
MySQL
Raw Normal View History

2018-12-08 04:13:49 +00:00
CREATE TEMPORARY TABLE "fruits" (
"id" serial,
"tree_id" int,
"common_name" varchar,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);