forked from mxdldev/spring-cloud-flycloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsys-log.sql
35 lines (27 loc) · 885 Bytes
/
sys-log.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
CREATE DATABASE `sys-log` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
use `sys-log`;
/*
Navicat MySQL Data Transfer
Source Server : SSSS
Source Server Version : 50717
Source Host : localhost:3306
Source Database : sys-log
Target Server Type : MYSQL
Target Server Version : 50717
File Encoding : 65001
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for sys_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_log`;
CREATE TABLE `sys_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`create_date` datetime DEFAULT NULL,
`ip` varchar(255) DEFAULT NULL,
`method` varchar(255) DEFAULT NULL,
`operation` varchar(255) DEFAULT NULL,
`params` varchar(255) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=267 DEFAULT CHARSET=utf8;