platform/angel_orm_generator/test/models/role.up.g.sql

8 lines
139 B
MySQL
Raw Normal View History

CREATE TEMPORARY TABLE "roles" (
2017-11-20 18:09:23 +00:00
"id" serial,
"name" varchar,
"created_at" timestamp,
"updated_at" timestamp,
PRIMARY KEY(id)
);