platform/angel_orm_postgres/test/migrations/user_role.sql

7 lines
170 B
MySQL
Raw Normal View History

2019-01-27 04:14:20 +00:00
CREATE TEMPORARY TABLE "role_users" (
2018-12-08 22:51:27 +00:00
"id" serial PRIMARY KEY,
"user_id" int NOT NULL,
"role_id" int NOT NULL,
"created_at" timestamp,
"updated_at" timestamp
);