DROP TABLE IF EXISTS `action_type_t`;
CREATE TABLE `action_type_t` (
  `id` int NOT NULL,
  `description` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
);
