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,19 +1,19 @@
SET FOREIGN_KEY_CHECKS=0;
INSERT IGNORE INTO
`omc_db`.`sys_user_role` (`user_id`, `role_id`)
`sys_user_role` (`user_id`, `role_id`)
VALUES (1, 1);
INSERT IGNORE INTO
`omc_db`.`sys_user_role` (`user_id`, `role_id`)
`sys_user_role` (`user_id`, `role_id`)
VALUES (2, 2);
INSERT IGNORE INTO
`omc_db`.`sys_user_role` (`user_id`, `role_id`)
`sys_user_role` (`user_id`, `role_id`)
VALUES (103, 3);
INSERT IGNORE INTO
`omc_db`.`sys_user_role` (`user_id`, `role_id`)
`sys_user_role` (`user_id`, `role_id`)
VALUES (104, 4);
SET FOREIGN_KEY_CHECKS=1;