platform/angel_orm_generator/test/models/tree.up.g.sql
thosakwe ed9b675ac3 +4
2017-09-15 15:23:36 -04:00

8 lines
165 B
SQL

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