platform/angel_orm_generator/test/migrations/tree.sql
2019-04-02 11:29:12 -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)
);