update_20170214_1_to_20170314_2.sql 1.3 KB

123456789101112131415161718192021222324252627282930
  1. /*==============================================================*/
  2. /* DBMS name: MySQL 5.0 */
  3. /* Created on: 2017/3/14 17:46:45 */
  4. /*==============================================================*/
  5. /*==============================================================*/
  6. /* Table: upms_log */
  7. /*==============================================================*/
  8. create table upms_log
  9. (
  10. log_id int not null auto_increment comment '编号',
  11. description varchar(100) comment '操作描述',
  12. username varchar(20) comment '操作用户',
  13. start_time bigint(20) comment '操作时间',
  14. spend_time int comment '消耗时间',
  15. base_path varchar(100) comment '根路径',
  16. uri varchar(50) comment 'URI',
  17. url varchar(200) comment 'URL',
  18. method varchar(10) comment '请求类型',
  19. parameter text comment '请求参数',
  20. user_agent varchar(200) comment '用户标识',
  21. ip varchar(30) comment 'IP地址',
  22. result text comment '响应结果',
  23. permissions varchar(100) comment '权限值',
  24. primary key (log_id)
  25. );
  26. alter table upms_log comment '操作日志';