
CREATE TABLE sys_log  (
  id varchar(50) NOT NULL PRIMARY KEY,
  category varchar(200) NOT NULL,
  name varchar(1000) NOT NULL,
  data text NULL,
  status int NULL DEFAULT 0,
  message text NULL,
  created_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP(0)
);

