diff options
Diffstat (limited to 'sql-files/upgrades/upgrade_svn17080.sql')
-rw-r--r-- | sql-files/upgrades/upgrade_svn17080.sql | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/sql-files/upgrades/upgrade_svn17080.sql b/sql-files/upgrades/upgrade_svn17080.sql index a94b8b668..cfbe5dfe0 100644 --- a/sql-files/upgrades/upgrade_svn17080.sql +++ b/sql-files/upgrades/upgrade_svn17080.sql @@ -1,16 +1,16 @@ -CREATE TABLE IF NOT EXISTS `interreg` (
- `varname` varchar(11) NOT NULL,
- `value` varchar(20) NOT NULL,
- PRIMARY KEY (`varname`)
-) ENGINE=InnoDB;
-INSERT INTO `interreg` (`varname`, `value`) VALUES
-('nsiuid', '0');
-
-ALTER TABLE `auction` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0';
-ALTER TABLE `cart_inventory` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0';
-ALTER TABLE `guild_storage` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0';
-ALTER TABLE `inventory` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0';
-ALTER TABLE `mail` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0';
-ALTER TABLE `storage` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0';
-
-ALTER TABLE `picklog` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0' AFTER `card3`;
+CREATE TABLE IF NOT EXISTS `interreg` ( + `varname` varchar(11) NOT NULL, + `value` varchar(20) NOT NULL, + PRIMARY KEY (`varname`) +) ENGINE=InnoDB; +INSERT INTO `interreg` (`varname`, `value`) VALUES +('nsiuid', '0'); + +ALTER TABLE `auction` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0'; +ALTER TABLE `cart_inventory` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0'; +ALTER TABLE `guild_storage` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0'; +ALTER TABLE `inventory` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0'; +ALTER TABLE `mail` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0'; +ALTER TABLE `storage` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0'; + +ALTER TABLE `picklog` ADD `nsiuid` BIGINT NOT NULL DEFAULT '0' AFTER `card3`; |