Skip to content

Commit

Permalink
Fix log table creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Bigard Florian authored Jul 20, 2017
1 parent 52ae4db commit ccfa4b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/schema-0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS `log` (
`log_remote_ip` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`log_remote_port` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
`log_start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`log_end_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`log_end_time` timestamp NOT NULL DEFAULT NULL,
`log_received` float NOT NULL DEFAULT '0',
`log_send` float NOT NULL DEFAULT '0',
PRIMARY KEY (`log_id`),
Expand Down

0 comments on commit ccfa4b0

Please sign in to comment.