Gets rid of unneeded schema (#11766)

This commit is contained in:
Selis
2025-10-02 01:17:19 +02:00
committed by GitHub
parent eb9d7ff8fd
commit 33fc470bfa
2 changed files with 9 additions and 296 deletions
+9
View File
@@ -306,3 +306,12 @@ END IF;
END
DELIMITER ;
-- CHOMPedit Start
CREATE TABLE IF NOT EXISTS `erro_mentor` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ckey` varchar(32) NOT NULL,
`mentor` int(16) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
-- CHOMPedit End