eis/script/table/T_OPR_CFG.sql

19 lines
546 B
SQL
Raw 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.

-- Version: 2025.7.31 14:52:27
Drop Table T_OPR_CFG@
Create Table T_OPR_CFG(
modular VARCHAR(50) NOT NULL,
operation VARCHAR(50) NOT NULL,
flag DECIMAL(1),
CONSTRAINT pk_T_OPR_CFG PRIMARY KEY (modular, operation)
)
IN TB8KUSREMS INDEX IN TB8KIDXEMS@
Alter Table T_OPR_CFG ALTER COLUMN flag SET WITH Default 0@
COMMENT ON Table T_OPR_CFG IS '操作日志配置'@
COMMENT ON T_OPR_CFG (modular IS '操作模块')@
COMMENT ON T_OPR_CFG (operation IS '操作')@
COMMENT ON T_OPR_CFG (flag IS '是否记录日志[0:不记录1:记录]')@