14 lines
371 B
SQL
14 lines
371 B
SQL
-- ----------------------------
|
|
-- Table structure for sys_role_dept
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "sys_role_dept";
|
|
CREATE TABLE "sys_role_dept" (
|
|
"role_id" integer(20) NOT NULL,
|
|
"dept_id" integer(20) NOT NULL,
|
|
PRIMARY KEY ("role_id", "dept_id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_role_dept
|
|
-- ----------------------------
|