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

8 lines
138 B
MySQL
Raw Normal View History

2017-08-01 05:45:54 +00:00
CREATE TEMPORARY TABLE "legs" (
2017-11-20 18:09:23 +00:00
"id" serial,
2017-08-01 05:45:54 +00:00
"name" varchar,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);