2
0

fix: update db

This commit is contained in:
caiyuchao
2024-12-25 10:22:48 +08:00
parent f106e5631f
commit a279c826e5

View File

@@ -255,6 +255,7 @@ DROP TABLE IF EXISTS `u_client`;
CREATE TABLE `u_client` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Client ID',
`user_id` bigint(20) NULL DEFAULT NULL COMMENT 'User ID link to u_user',
`site_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Site ID',
`client_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'Client Name',
`client_device_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'Client device type',
`client_mac` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'Client mac address',