fix(database): 增加sql分号方便使用

This commit is contained in:
v-zhangjc9
2024-05-16 14:57:08 +08:00
parent 486b9ec6b5
commit ceec7bf36f
5 changed files with 5 additions and 5 deletions

View File

@@ -23,4 +23,4 @@ CREATE TABLE `data_source_table_field`
KEY `table_id` (`table_id`),
KEY `idx_field` (`table_id`, `field_name`),
KEY `idx_par_key` (`table_id`, `partition_key`, `record_state`)
) DEFAULT CHARSET = utf8mb4 COMMENT ='数据表字段信息,包括字段名称、类型、长度、精度、备注等'
) DEFAULT CHARSET = utf8mb4 COMMENT ='数据表字段信息,包括字段名称、类型、长度、精度、备注等';