Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. ALTER TABLE `armorsets`
  2. MODIFY COLUMN `chest` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `id`,
  3. MODIFY COLUMN `legs` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `chest`,
  4. MODIFY COLUMN `head` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `legs`,
  5. MODIFY COLUMN `gloves` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `head`,
  6. MODIFY COLUMN `feet` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `gloves`;
  7.  
  8. REPLACE INTO `armorsets` VALUES (560, 99163, 99166, 99160, 99169, 99172, '3006-1;99903-1;', 0, 0, 8461, 0, 0, 0, 0, 0);
  9. REPLACE INTO `armorsets` VALUES (561, 99164, 99167, 99161, 99170, 99173, '3007-1;99904-1;', 0, 0, 8462, 0, 0, 0, 0, 0);
  10. REPLACE INTO `armorsets` VALUES (562, 99165, 99168, 99162, 99171, 99174, '3008-1;99905-1;', 0, 0, 8463, 0, 0, 0, 0, 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement