You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
YZWL/IDEA/sys/sys_config.sql

12 lines
369 B

create table sys.sys_config
(
variable varchar(128) not null
primary key,
value varchar(128) null,
set_time timestamp default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP,
set_by varchar(128) null
);
grant select on table sys.sys_config to 'mysql.sys'@localhost;