platform/angel_orm_mysql/test/migrations/user_role.sql

7 lines
170 B
MySQL
Raw Normal View History

2019-04-08 17:08:54 +00:00
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
);