fix: 将配置中的 "standard" 修改为 "std"
This commit is contained in:
19
build/database/std/install/ue_event_amf.sql
Normal file
19
build/database/std/install/ue_event_amf.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
--
|
||||
-- Table structure for table `ue_event_amf`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `ue_event_amf`;
|
||||
CREATE TABLE `ue_event_amf` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`ne_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '',
|
||||
`ne_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '',
|
||||
`rm_uid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '可能没有',
|
||||
`timestamp` bigint DEFAULT '48' COMMENT '接收到的timestamp秒级存储毫秒时间戳',
|
||||
`event_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '事件类型 auth-result detach cm-state',
|
||||
`event_json` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT 'data JSON String',
|
||||
`created_at` bigint DEFAULT '0' COMMENT '记录创建存储毫秒',
|
||||
PRIMARY KEY (`id`) USING BTREE,
|
||||
KEY `idx_amf_type_t` (`event_type`,`timestamp`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='UE事件_AMF终端接入';
|
||||
|
||||
-- Dump completed on 2025-02-14 15:26:56
|
||||
Reference in New Issue
Block a user