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" (
"id" serial,
"name" varchar,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);