From 565a774d48a35605918e7d27e7bead4f398c5e21 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Thu, 15 Mar 2018 08:10:28 +0000 Subject: [PATCH] Addition of item_mall_transactions SQL table. --- .../dist/db_installer/sql/game/item_mall_transactions.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 L2J_Mobius_CT_2.6_HighFive/dist/db_installer/sql/game/item_mall_transactions.sql diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/db_installer/sql/game/item_mall_transactions.sql b/L2J_Mobius_CT_2.6_HighFive/dist/db_installer/sql/game/item_mall_transactions.sql new file mode 100644 index 0000000000..2e83de385d --- /dev/null +++ b/L2J_Mobius_CT_2.6_HighFive/dist/db_installer/sql/game/item_mall_transactions.sql @@ -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; \ No newline at end of file