Pelf

pelf creature_currenty table structure

Mar 11th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.51 KB | None | 0 0
  1. # Dumping STRUCTURE FOR TABLE world.creature_currency
  2. DROP TABLE IF EXISTS `creature_currency`;
  3. CREATE TABLE IF NOT EXISTS `creature_currency` (
  4.   `creature_id` mediumint(8) UNSIGNED NOT NULL,
  5.   `CurrencyId1` SMALLINT(5) UNSIGNED DEFAULT NULL,
  6.   `CurrencyId2` SMALLINT(5) UNSIGNED DEFAULT NULL,
  7.   `CurrencyId3` SMALLINT(5) UNSIGNED DEFAULT NULL,
  8.   `CurrencyCount1` SMALLINT(6) DEFAULT NULL,
  9.   `CurrencyCount2` SMALLINT(6) DEFAULT NULL,
  10.   `CurrencyCount3` SMALLINT(6) DEFAULT NULL
  11. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment