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

9 lines
153 B
MySQL
Raw Normal View History

2017-08-01 05:45:54 +00:00
CREATE TEMPORARY TABLE "foots" (
"id" serial,
"leg_id" int,
"n_toes" int,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);