platform/angel_orm_generator/test/models/fruit.up.g.sql

9 lines
165 B
MySQL
Raw Normal View History

2017-09-15 19:23:36 +00:00
CREATE TEMPORARY TABLE "fruits" (
2017-11-18 20:10:58 +00:00
"id" varchar,
2017-09-15 19:23:36 +00:00
"tree_id" int,
"common_name" varchar,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);