-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmysql.data.sql
More file actions
30 lines (28 loc) · 1.12 KB
/
mysql.data.sql
File metadata and controls
30 lines (28 loc) · 1.12 KB
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
CREATE TABLE `runtimeError` (
`error_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(2048) NOT NULL DEFAULT '',
`file` varchar(1024) DEFAULT '',
`line` int(10) unsigned DEFAULT NULL,
`error_type` int(10) unsigned NOT NULL DEFAULT '0',
`create_time` datetime DEFAULT NULL,
`server_name` varchar(100) DEFAULT NULL,
`execution_script` varchar(1024) NOT NULL DEFAULT '',
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`ip_address` varchar(16) DEFAULT NULL,
`user_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`error_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `queryError` (
`error_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`query` text,
`file` varchar(1024) DEFAULT '',
`line` int(10) unsigned DEFAULT NULL,
`error_string` varchar(1024) DEFAULT '',
`error_no` int(10) unsigned DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`execution_script` varchar(1024) DEFAULT '',
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`ip_address` varchar(16) DEFAULT NULL,
`user_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`error_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;