DROP TABLE IF EXISTS `user_type_t`;
CREATE TABLE `user_type_t` (
  `user_type` int NOT NULL,
  `description` varchar(20) NOT NULL,
  PRIMARY KEY (`user_type`)
);

LOCK TABLES `user_type_t` WRITE;
UNLOCK TABLES;
