chore: 打包数据库去除表名绑定

This commit is contained in:
TsMask
2024-03-19 21:06:07 +08:00
parent 7e8360dcb4
commit 5f8bd6bac1
31 changed files with 362 additions and 362 deletions

View File

@@ -1,7 +1,7 @@
SET FOREIGN_KEY_CHECKS=0;
CREATE TABLE
IF NOT EXISTS `omc_db`.`sys_role_dept` (
IF NOT EXISTS `sys_role_dept` (
`role_id` bigint(20) NOT NULL COMMENT '角色ID',
`dept_id` bigint(20) NOT NULL COMMENT '部门ID',
PRIMARY KEY (`role_id`, `dept_id`) USING BTREE