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

9 lines
164 B
MySQL
Raw Normal View History

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