platform/angel_orm_postgres/test/migrations/tree.sql
2019-04-08 12:58:41 -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)
);