DROP TABLE IF EXISTS `notifications_type_t`;
CREATE TABLE `notifications_type_t` (
  `notification_id` INT NOT NULL,
  `description` VARCHAR(50) NOT NULL,
  PRIMARY KEY (`notification_id`));
