You've already forked AstralRinth
forked from didirus/AstralRinth
* Add GET /v3/payouts/history * V3 backwards compat * Sqlx prepare * Include user ID in GET /v3/payout
29 lines
595 B
JSON
29 lines
595 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT created, amount\n FROM payouts_values\n WHERE user_id = $1\n AND NOW() >= date_available",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "created",
|
|
"type_info": "Timestamptz"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "amount",
|
|
"type_info": "Numeric"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Int8"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "8f68ea8481d86687ef4ebd6311f8ec5437be07fab8c34a964f7864304681bb94"
|
|
}
|