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

9 lines
165 B
MySQL
Raw Normal View History

2017-09-15 19:23:36 +00:00
CREATE TEMPORARY TABLE "trees" (
"id" serial,
"rings" smallint UNIQUE,
"created_at" timestamp,
"updated_at" timestamp,
UNIQUE(rings),
PRIMARY KEY(id)
);