Addition of item_mall_transactions SQL table.

This commit is contained in:
MobiusDev 2018-03-15 08:10:28 +00:00
parent 0ef150f22a
commit 565a774d48

View File

@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `item_mall_transactions` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`productId` INT NOT NULL DEFAULT 0,
`quantity` INT NOT NULL DEFAULT 1,
`transactionTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;