· 9 years ago · Jan 26, 2017, 07:16 PM
1-- Структура таблицы `shopcart_falloutcraft`
2--
3
4CREATE TABLE IF NOT EXISTS `shopcart_falloutcraft` (
5`id` int(11) NOT NULL,
6 `type` varchar(255) DEFAULT 'item',
7 `player` varchar(255) DEFAULT NULL,
8 `item` varchar(255) DEFAULT NULL,
9 `extra` text,
10 `amount` int(11) NOT NULL DEFAULT '1',
11 `name` text,
12 `price` int(11) DEFAULT NULL,
13 `enchant` text,
14 `date` int(11) DEFAULT NULL
15) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
16
17--
18-- Дамп данных таблицы `shopcart_falloutcraft`
19--
20
21INSERT INTO `shopcart_falloutcraft` (`id`, `type`, `player`, `item`, `extra`, `amount`, `name`, `price`, `enchant`, `date`) VALUES
22(1, 'item', 'Davial', '34', NULL, 69, '23', 6, '', 1442943914),
23(2, 'item', 'Davial', '34#48:2', NULL, 23, '23', 12, 'Сила 2 ур. ', 1442943932),
24(3, 'item', 'Davial', '1', NULL, 3, '2', 1, '', 1442998405),
25(18, 'item', 'KpoJIuK', '5380', NULL, 1, 'Облик "Супермутант" +1 защита', 300, '', 1456417852);
26
27-- --------------------------------------------------------