diff options
-rw-r--r-- | sql-files/main.sql | 1 | ||||
-rw-r--r-- | sql-files/upgrade_svn14085.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index 1a667c188..2e1663416 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -100,6 +100,7 @@ CREATE TABLE IF NOT EXISTS `char` ( `mother` int(11) unsigned NOT NULL default '0', `child` int(11) unsigned NOT NULL default '0', `fame` int(11) unsigned NOT NULL default '0', + `rename` SMALLINT(3) unsigned NOT NULL default '0', PRIMARY KEY (`char_id`), KEY `account_id` (`account_id`), KEY `party_id` (`party_id`), diff --git a/sql-files/upgrade_svn14085.sql b/sql-files/upgrade_svn14085.sql new file mode 100644 index 000000000..3d0ed00f4 --- /dev/null +++ b/sql-files/upgrade_svn14085.sql @@ -0,0 +1 @@ +ALTER TABLE `char` ADD `rename` SMALLINT( 3 ) UNSIGNED NOT NULL DEFAULT '0';
\ No newline at end of file |