From 5cf6e617bff7d9bcc747b4497eb27532d96f107d Mon Sep 17 00:00:00 2001 From: hexcoded Date: Wed, 22 May 2013 16:54:06 +0300 Subject: [PATCH] Update sql.sql Fixed movement time bug.'starttime' and 'endtime' type are changed from float to int(11). --- install/data/sql.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/data/sql.sql b/install/data/sql.sql index 088f5640..f1b79b8f 100644 --- a/install/data/sql.sql +++ b/install/data/sql.sql @@ -977,8 +977,8 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%movement` ( `to` int(11) unsigned NOT NULL DEFAULT '0', `ref` int(11) unsigned NOT NULL DEFAULT '0', `ref2` int(11) unsigned NOT NULL DEFAULT '0', - `starttime` float(20) unsigned NOT NULL DEFAULT '0', - `endtime` float(20) unsigned NOT NULL DEFAULT '0', + `starttime` int(11) unsigned NOT NULL DEFAULT '0', + `endtime` int(11) unsigned NOT NULL DEFAULT '0', `proc` tinyint(1) unsigned NOT NULL DEFAULT '0', `send` tinyint(1) unsigned NOT NULL, `wood` int(11) unsigned NOT NULL, @@ -1554,4 +1554,4 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%ww_attacks` ( -- Dumping data for table `%prefix%password` -- --- -------------------------------------------------------- \ No newline at end of file +-- --------------------------------------------------------