22 lines
919 B
MySQL
22 lines
919 B
MySQL
![]() |
/*
|
|||
|
Dreamer CMS 数据库备份工具 时间:2025-04-09
|
|||
|
*/
|
|||
|
|
|||
|
DROP TABLE IF EXISTS `system_user_role`;
|
|||
|
|
|||
|
/*
|
|||
|
Table structure for table `system_user_role`
|
|||
|
*/
|
|||
|
CREATE TABLE `system_user_role` (
|
|||
|
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
|||
|
`user_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '用户ID',
|
|||
|
`role_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '角色ID',
|
|||
|
PRIMARY KEY (`id`)
|
|||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
|
|||
|
|
|||
|
/*
|
|||
|
Data for table `system_user_role`
|
|||
|
*/
|
|||
|
INSERT INTO `system_user_role`(`id`, `role_id`, `user_id`) VALUES ('1645582974030209024', '08d8ce83eef944d88f0817187c308bfd', '1443c458e49c44539b63212cba8b9b1e');
|
|||
|
INSERT INTO `system_user_role`(`id`, `role_id`, `user_id`) VALUES ('324968db08344f27b0b219d4908c2b08', '51c3cad610ce4dc4a279df50eec4d1ff', '9f4b807db2e94670bb02cdc212ea7389');
|