· 5 years ago · Nov 07, 2020, 11:56 PM
1CREATE TABLE IF NOT EXISTS `donate_system_2` (
2 `id` int(8) NOT NULL AUTO_INCREMENT,
3 `char_id` int(12) DEFAULT '0',
4 `server_id` int(12) DEFAULT '0',
5 `sum` int(12) DEFAULT '0',
6 `items_amount` int(12) DEFAULT '0',
7 `created_at` bigint(12) DEFAULT '0',
8 `updated_at` bigint(12) DEFAULT '0',
9 `status` int(12) DEFAULT '0',
10 `method_id` int(12) DEFAULT '0',
11 PRIMARY KEY (`id`)
12) ENGINE=MyISAM AUTO_INCREMENT=397 DEFAULT CHARSET=utf8;
13