platform/angel_orm_mysql/test/migrations/tree.sql

8 lines
164 B
MySQL
Raw Normal View History

2019-04-08 17:08:54 +00:00
CREATE TEMPORARY TABLE "trees" (
"id" serial,
"rings" smallint UNIQUE,
"created_at" timestamp,
"updated_at" timestamp,
UNIQUE(rings),
PRIMARY KEY(id)
);