platform/angel_orm_generator/test/models/tree.up.g.sql
2017-11-18 15:10:58 -05:00

8 lines
161 B
SQL

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