fix nix build

This commit is contained in:
Robin Appelman 2025-05-26 21:52:02 +02:00
commit 50157d4ada
7 changed files with 283 additions and 3 deletions

View file

@ -0,0 +1,87 @@
{
"db_name": "PostgreSQL",
"query": "select matches.id, team_home, team_away, score_home, score_away, matches.format as \"format!: GameMode\", season as \"season!\", week as \"week!\", default_date as \"default_date!\", map as \"map!\" from matches\n inner join teams on teams.id in (team_home, team_away)\n where matches.format in ('highlander', 'sixes', 'fours', 'ultiduo')\n and region != 'asia'\n order by id asc",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Int4"
},
{
"ordinal": 1,
"name": "team_home",
"type_info": "Int4"
},
{
"ordinal": 2,
"name": "team_away",
"type_info": "Int4"
},
{
"ordinal": 3,
"name": "score_home",
"type_info": "Int2"
},
{
"ordinal": 4,
"name": "score_away",
"type_info": "Int2"
},
{
"ordinal": 5,
"name": "format!: GameMode",
"type_info": {
"Custom": {
"name": "game_mode",
"kind": {
"Enum": [
"highlander",
"eights",
"sixes",
"fours",
"ultiduo"
]
}
}
}
},
{
"ordinal": 6,
"name": "season!",
"type_info": "Int4"
},
{
"ordinal": 7,
"name": "week!",
"type_info": "Int4"
},
{
"ordinal": 8,
"name": "default_date!",
"type_info": "Date"
},
{
"ordinal": 9,
"name": "map!",
"type_info": "Varchar"
}
],
"parameters": {
"Left": []
},
"nullable": [
false,
false,
false,
false,
false,
true,
true,
true,
true,
true
]
},
"hash": "bbef4a36f0e6ec541d19a6cd9f254dd2f24667e0457e56f1731c7fbdc238b9a2"
}