platform/angel_orm_postgres/test/migrations/role.sql
2019-04-08 12:58:41 -04:00

6 lines
No EOL
136 B
SQL

CREATE TEMPORARY TABLE "roles" (
"id" serial PRIMARY KEY,
"name" varchar(255),
"created_at" timestamp,
"updated_at" timestamp
);