We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe76081 commit 9deb2a8Copy full SHA for 9deb2a8
BNote/install.php
@@ -795,12 +795,16 @@ function process_databaseConfig() {
795
`group` int(11) NOT NULL
796
) ENGINE=InnoDB DEFAULT CHARSET=utf8;");
797
798
- array_push($queries,
799
- "CREATE TABLE IF NOT EXISTS `rehearsal_group` (
+ array_push($queries, "CREATE TABLE IF NOT EXISTS `rehearsal_group` (
800
`rehearsal` int(11) NOT NULL,
801
802
803
+ array_push($queries, "CREATE TABLE IF NOT EXISTS `concert_group` (
804
+ `concert` int(11) NOT NULL,
805
+ `group` int(11) NOT NULL
806
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;");
807
+
808
foreach($queries as $i => $query) {
809
$db->execute($query);
810
}
0 commit comments