· 6 years ago · Jan 18, 2020, 07:50 PM
1/*
2
3SET FOREIGN_KEY_CHECKS=0;
4
5-- ----------------------------
6-- Table structure for `paypal_donation_log`
7-- ----------------------------
8DROP TABLE IF EXISTS `paypal_donation_log`;
9CREATE TABLE `paypal_donation_log` (
10 `transaction_id` varchar(64) NOT NULL DEFAULT '',
11 `donation` varchar(255) NOT NULL DEFAULT '',
12 `amount` double NOT NULL DEFAULT '0',
13 `amountminfee` double NOT NULL DEFAULT '0',
14 `character_name` text NOT NULL,
15 `dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
16 PRIMARY KEY (`transaction_id`) USING BTREE
17) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
18
19-- ----------------------------
20-- Records of paypal_donation_log
21-- ----------------------------