20130604update.sql 298 B

1234
  1. ALTER TABLE `character_recipeshoplist`
  2. CHANGE COLUMN `Recipeid` `recipeId` int(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `charId`,
  3. CHANGE COLUMN `Price` `price` bigint(20) UNSIGNED NOT NULL DEFAULT 0 AFTER `recipeId`,
  4. CHANGE COLUMN `Pos` `index` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `price`;