CREATE TABLE `quests_prices` (
  `id` int(11) NOT NULL,
  `quest_id` int(11) DEFAULT NULL,
  `point_id` int(11) DEFAULT NULL,
  `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `price` float(12,2) DEFAULT NULL,
  `price_one` float(12,2) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;