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

7 lines
No EOL
170 B
SQL

CREATE TEMPORARY TABLE "role_users" (
"id" serial PRIMARY KEY,
"user_id" int NOT NULL,
"role_id" int NOT NULL,
"created_at" timestamp,
"updated_at" timestamp
);