· 6 years ago · Jul 30, 2019, 11:20 PM
1DROP TABLE IF EXISTS `bourse`;
2CREATE TABLE IF NOT EXISTS `bourse` (
3`id` int(11) NOT NULL AUTO_INCREMENT,
4`itemName` text NOT NULL,
5`price` int(11) NOT NULL,
6PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;