platform/angel_orm_mysql/test/migrations/tree.sql
2019-04-08 13:08:54 -04:00

8 lines
No EOL
164 B
SQL

CREATE TEMPORARY TABLE "trees" (
"id" serial,
"rings" smallint UNIQUE,
"created_at" timestamp,
"updated_at" timestamp,
UNIQUE(rings),
PRIMARY KEY(id)
);