CREATE TABLE `llx_pensebete` (
  `rowid` int(11) NOT NULL AUTO_INCREMENT,
  `fk_soc` int(11) NOT NULL,
  `date_creation` date DEFAULT NULL,
  `fk_user_create` int(11) DEFAULT NULL,
  `description` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `closed` tinyint(4) NOT NULL DEFAULT 0,
  `date_closed` date DEFAULT NULL,
  `fk_user_closed` int(11) DEFAULT NULL,
  PRIMARY KEY (`rowid`)
) ENGINE=InnoDB;