You've already forked AstralRinth
forked from didirus/AstralRinth
* Add limit to payouts_values_notifications synchronizer * Set payout notification threshold to $1 * Fix formatting * Query cache
15 lines
524 B
JSON
15 lines
524 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "\n\t\tINSERT INTO payouts_values_notifications (date_available, user_id, notified)\n\t\tSELECT DISTINCT date_available, user_id, false notified\n\t\tFROM payouts_values\n\t\tWHERE date_available > NOW()\n\t\tLIMIT $1\n\t\tON CONFLICT (date_available, user_id) DO NOTHING\n\t\t",
|
|
"describe": {
|
|
"columns": [],
|
|
"parameters": {
|
|
"Left": [
|
|
"Int8"
|
|
]
|
|
},
|
|
"nullable": []
|
|
},
|
|
"hash": "ba8b07d9cd62d9ec107b3ffaef3f153b01c2f9d8b14a0fa8078cfd908aa3255f"
|
|
}
|