multi-tenant branch changed db to tenants_db

This commit is contained in:
2024-06-19 11:23:36 +08:00
parent 7a785182b7
commit 2f08c044fc
22 changed files with 374 additions and 374 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;