diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-03-24 22:51:05 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-03-24 22:51:05 +0000 |
commit | e3858c34c1a4ee83ad40c00c14ac34958f386c89 (patch) | |
tree | 7f54a3211df33a88a002f080976b01ef235e48c0 /sql-files/upgrade_svn14759.sql | |
parent | 2e12c0db360b75de92c0adeffc21f0120d0aeaa5 (diff) | |
download | hercules-e3858c34c1a4ee83ad40c00c14ac34958f386c89.tar.gz hercules-e3858c34c1a4ee83ad40c00c14ac34958f386c89.tar.bz2 hercules-e3858c34c1a4ee83ad40c00c14ac34958f386c89.tar.xz hercules-e3858c34c1a4ee83ad40c00c14ac34958f386c89.zip |
- Removed extra <TAB> from const.txt
- Changed the card columns in `cart_inventory` table to SMALLINT(11), to match other tables.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14759 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'sql-files/upgrade_svn14759.sql')
-rw-r--r-- | sql-files/upgrade_svn14759.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql-files/upgrade_svn14759.sql b/sql-files/upgrade_svn14759.sql new file mode 100644 index 000000000..58d4bea17 --- /dev/null +++ b/sql-files/upgrade_svn14759.sql @@ -0,0 +1,4 @@ +ALTER TABLE `cart_inventory` MODIFY COLUMN `card0` SMALLINT(11) NOT NULL DEFAULT '0'; +ALTER TABLE `cart_inventory` MODIFY COLUMN `card1` SMALLINT(11) NOT NULL DEFAULT '0'; +ALTER TABLE `cart_inventory` MODIFY COLUMN `card2` SMALLINT(11) NOT NULL DEFAULT '0'; +ALTER TABLE `cart_inventory` MODIFY COLUMN `card3` SMALLINT(11) NOT NULL DEFAULT '0'; |