Guest User

Untitled

a guest
Jun 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.43 KB | None | 0 0
  1. DROP TABLE IF EXISTS `creature_currency`;
  2. CREATE TABLE IF NOT EXISTS `creature_currency` (
  3.   `creature_id` mediumint(8) UNSIGNED NOT NULL,
  4.   `CurrencyId1` SMALLINT(5) UNSIGNED DEFAULT NULL,
  5.   `CurrencyId2` SMALLINT(5) UNSIGNED DEFAULT NULL,
  6.   `CurrencyId3` SMALLINT(5) UNSIGNED DEFAULT NULL,
  7.   `CurrencyCount1` SMALLINT(6) DEFAULT NULL,
  8.   `CurrencyCount2` SMALLINT(6) DEFAULT NULL,
  9.   `CurrencyCount3` SMALLINT(6) DEFAULT NULL
  10. );
Add Comment
Please, Sign In to add comment