Update sql.sql

Fixed movement time bug.'starttime' and 'endtime' type are changed from float to int(11).
This commit is contained in:
hexcoded
2013-05-22 16:54:06 +03:00
parent 5074b12fc8
commit 5cf6e617bf
+3 -3
View File
@@ -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`
--
-- --------------------------------------------------------
-- --------------------------------------------------------