Advertisement
Haycore

handelsposten_ankauf

Jan 25th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.56 KB | None | 0 0
  1. CREATE TABLE `handelsposten_ankauf` (
  2.     `ID` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  3.     `Name` VARCHAR(45) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
  4.     `PreisAK` INT(11) NULL DEFAULT NULL,
  5.     `MinAKQuali` INT(11) NULL DEFAULT NULL,
  6.     `IstAKQuali` INT(11) NULL DEFAULT NULL,
  7.     `AnkaufMax` INT(11) NULL DEFAULT NULL,
  8.     `MengeAnkauf` INT(11) NULL DEFAULT NULL,
  9.     `PreisGesamt` INT(10) UNSIGNED NULL DEFAULT NULL COMMENT 'BasePrice for Q=50 item in 0.01*copper coins',
  10.     PRIMARY KEY (`ID`)
  11. )
  12. COLLATE='utf8_unicode_ci'
  13. ENGINE=InnoDB
  14. ROW_FORMAT=COMPACT
  15. AUTO_INCREMENT=1438
  16. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement