aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNay <dnpd.dd@gmail.com>2012-07-24 15:29:59 +0100
committerNay <dnpd.dd@gmail.com>2012-07-24 15:29:59 +0100
commitabadc30efc025064efa502555a7c3fba894b5a4d (patch)
tree7ed4daf1d9692f95eb6cab0745553e74817bd718
parent0f04b2fc36593526cf1cc86667d37779691e1135 (diff)
SQL: Missing changes to character_database.sql
-rw-r--r--sql/base/characters_database.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql
index a45af500f88..8c3913bda73 100644
--- a/sql/base/characters_database.sql
+++ b/sql/base/characters_database.sql
@@ -1135,7 +1135,7 @@ CREATE TABLE `characters` (
`gender` tinyint(3) unsigned NOT NULL DEFAULT '0',
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
`xp` int(10) unsigned NOT NULL DEFAULT '0',
- `money` int(10) unsigned NOT NULL DEFAULT '0',
+ `money` bigint(20) unsigned NOT NULL DEFAULT '0',
`playerBytes` int(10) unsigned NOT NULL DEFAULT '0',
`playerBytes2` int(10) unsigned NOT NULL DEFAULT '0',
`playerFlags` int(10) unsigned NOT NULL DEFAULT '0',
@@ -2039,8 +2039,8 @@ CREATE TABLE `mail` (
`has_items` tinyint(3) unsigned NOT NULL DEFAULT '0',
`expire_time` int(10) unsigned NOT NULL DEFAULT '0',
`deliver_time` int(10) unsigned NOT NULL DEFAULT '0',
- `money` int(10) unsigned NOT NULL DEFAULT '0',
- `cod` int(10) unsigned NOT NULL DEFAULT '0',
+ `money` bigint(20) unsigned NOT NULL DEFAULT '0',
+ `cod` bigint(20) unsigned NOT NULL DEFAULT '0',
`checked` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_receiver` (`receiver`)