CREATE TABLE competition_group (
id int(11) NOT NULL AUTO_INCREMENT,
week int(11) DEFAULT NULL,
platform int(11) DEFAULT NULL,
amount int(11) NOT NULL DEFAULT '0',
capacity int(11) NOT NULL DEFAULT '50',
PRIMARY KEY (id)
) ENGINE=InnoDB AUTO_INCREMENT=1153 DEFAULT CHARSET=utf8mb4;