ERROR: Table 'arata_fe_user_group' already exists
CREATE TABLE arata_fe_user_group (
`id` int(11) AUTO_INCREMENT NOT NULL PRIMARY KEY,
`uuid` varchar(36) NOT NULL DEFAULT (UUID()),
`insert_date` DATETIME DEFAULT CURRENT_TIMESTAMP,
`update_date` DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`delete` tinyint(1) NOT NULL DEFAULT 0,
`sort` int(11) DEFAULT 0,
`parent_groupe` int(11) NOT NULL,
`title` int(11) NOT NULL,
constraint uuid unique(uuid) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4