Files
geg-gas-pcitc/scripts/dne_log_sit.sql
2025-10-10 09:20:48 +08:00

5 lines
174 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 创建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)
);