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,54 @@
{
"db_name": "PostgreSQL",
"query": "select team_id, steam_id, role as \"role: MembershipRole\", joined, \"left\" from membership_history\n order by team_id, steam_id asc",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "team_id",
"type_info": "Int4"
},
{
"ordinal": 1,
"name": "steam_id",
"type_info": "Int8"
},
{
"ordinal": 2,
"name": "role: MembershipRole",
"type_info": {
"Custom": {
"name": "membership_role",
"kind": {
"Enum": [
"leader",
"member"
]
}
}
}
},
{
"ordinal": 3,
"name": "joined",
"type_info": "Date"
},
{
"ordinal": 4,
"name": "left",
"type_info": "Date"
}
],
"parameters": {
"Left": []
},
"nullable": [
false,
false,
false,
false,
true
]
},
"hash": "a8724905f6efc0001f0f28f78662a217a86b3fa6badfd3d8eee92eb90e84304a"
}