CREATE TABLE `bl_game_news` (
  `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
  `title` varchar(128) NOT NULL,
  `short_body` text DEFAULT NULL,
  `action_id` int(3) NOT NULL DEFAULT 0,
  `action_data` text DEFAULT NULL,
  `end_date` varchar(128) NOT NULL,
  `create_date` timestamp(6) NOT NULL DEFAULT current_timestamp(6),
  `img_url` varchar(256) DEFAULT NULL,
  primary key (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;