platform/angel_orm_mysql/test/migrations/fruit.sql

8 lines
163 B
MySQL
Raw Normal View History

2019-04-08 17:08:54 +00:00
CREATE TEMPORARY TABLE "fruits" (
"id" serial,
"tree_id" int,
"common_name" varchar,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);