Small fixes

This commit is contained in:
2026-07-28 00:20:12 +02:00
parent 3461b61e27
commit 2055c15906
4 changed files with 16 additions and 21 deletions
@@ -188,7 +188,7 @@
"matchesConfig": [ "matchesConfig": [
{ {
"type": "Placeholder", "type": "Placeholder",
"placeholderDatetime": "2025-12-26 18:00:00" "placeholderDatetime": "2026-12-26 18:00:00"
} }
] ]
}, },
@@ -329,7 +329,7 @@
"matchesConfig": [ "matchesConfig": [
{ {
"type": "Placeholder", "type": "Placeholder",
"placeholderDatetime": "2026-03-17 18:00:00" "placeholderDatetime": "2027-03-17 18:00:00"
} }
] ]
}, },
@@ -371,7 +371,7 @@
"matchesConfig": [ "matchesConfig": [
{ {
"type": "Placeholder", "type": "Placeholder",
"placeholderDatetime": "2026-04-14 18:00:00" "placeholderDatetime": "2027-04-14 18:00:00"
} }
] ]
}, },
@@ -431,4 +431,4 @@
] ]
} }
] ]
} }
@@ -20,7 +20,7 @@
}, },
{ {
"type": "Placeholder", "type": "Placeholder",
"placeholderDatetime": "2025-08-21 18:00:00" "placeholderDatetime": "2026-08-21 18:00:00"
} }
] ]
}, },
@@ -37,7 +37,7 @@
}, },
{ {
"type": "Placeholder", "type": "Placeholder",
"placeholderDatetime": "2025-10-27 18:00:00" "placeholderDatetime": "2026-10-27 18:00:00"
} }
] ]
}, },
@@ -54,7 +54,7 @@
}, },
{ {
"type": "Placeholder", "type": "Placeholder",
"placeholderDatetime": "2025-12-01 18:30:00" "placeholderDatetime": "2026-12-01 18:30:00"
} }
] ]
}, },
@@ -71,7 +71,7 @@
}, },
{ {
"type": "Placeholder", "type": "Placeholder",
"placeholderDatetime": "2026-02-02 18:30:00" "placeholderDatetime": "2027-02-02 18:30:00"
} }
] ]
}, },
@@ -107,42 +107,42 @@
{ {
"type": "PlaceholderSingleMatch", "type": "PlaceholderSingleMatch",
"koMatch": true, "koMatch": true,
"placeholderDatetime": "2026-04-20 20:45:00", "placeholderDatetime": "2027-04-20 20:45:00",
"formulaHome": "D", "formulaHome": "D",
"formulaGuest": "D" "formulaGuest": "D"
}, },
{ {
"type": "PlaceholderSingleMatch", "type": "PlaceholderSingleMatch",
"koMatch": true, "koMatch": true,
"placeholderDatetime": "2026-04-20 20:45:00", "placeholderDatetime": "2027-04-20 20:45:00",
"formulaHome": "D", "formulaHome": "D",
"formulaGuest": "D" "formulaGuest": "D"
}, },
{ {
"type": "PlaceholderSingleMatch", "type": "PlaceholderSingleMatch",
"koMatch": true, "koMatch": true,
"placeholderDatetime": "2026-04-20 20:45:00", "placeholderDatetime": "2027-04-20 20:45:00",
"formulaHome": "D", "formulaHome": "D",
"formulaGuest": "D" "formulaGuest": "D"
}, },
{ {
"type": "PlaceholderSingleMatch", "type": "PlaceholderSingleMatch",
"koMatch": true, "koMatch": true,
"placeholderDatetime": "2026-04-20 20:45:00", "placeholderDatetime": "2027-04-20 20:45:00",
"formulaHome": "D", "formulaHome": "D",
"formulaGuest": "D" "formulaGuest": "D"
}, },
{ {
"type": "PlaceholderSingleMatch", "type": "PlaceholderSingleMatch",
"koMatch": true, "koMatch": true,
"placeholderDatetime": "2026-05-29 20:00:00", "placeholderDatetime": "2027-05-29 20:00:00",
"formulaHome": "W 61", "formulaHome": "W 61",
"formulaGuest": "W 63" "formulaGuest": "W 63"
}, },
{ {
"type": "PlaceholderSingleMatch", "type": "PlaceholderSingleMatch",
"koMatch": true, "koMatch": true,
"placeholderDatetime": "2026-05-29 20:00:00", "placeholderDatetime": "2027-05-29 20:00:00",
"formulaHome": "W 62", "formulaHome": "W 62",
"formulaGuest": "W 64" "formulaGuest": "W 64"
} }
@@ -0,0 +1,2 @@
UPDATE phpbb_footb_matchdays SET status = 0 WHERE season = 2027 AND status > 0;
UPDATE phpbb_footb_matches SET status = 0 WHERE season = 2027 AND status > 0;
@@ -46,11 +46,4 @@ public class TLWMatchesCreatorFootballTest {
String sql = creator.getSQLInsertString(); String sql = creator.getSQLInsertString();
System.out.println(sql); System.out.println(sql);
} }
@Test
public void getMatchesEMTippspielSqlTest() {
TLWMatchesCreatorFootball creator = new TLWMatchesCreatorFootball(2021, 49, "EM-Tippspiel");
String sql = creator.getSQLInsertString();
// System.out.println(sql);
}
} }