Files
geg-gas-pcitc/scripts/dne_log_sit.sql

5 lines
174 B
MySQL
Raw Permalink Normal View History

2025-10-10 09:20:48 +08:00
-- 创建log_table_info表tbl_name作为主键
CREATE TABLE log_table_info (
tbl_name VARCHAR(200) NOT NULL,
CONSTRAINT pk_log_table_info PRIMARY KEY (tbl_name)
);