Haycore

handelsposten_verkauf

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