mirror of
https://github.com/modrinth/code.git
synced 2026-09-03 13:36:48 +00:00
allow skipping 2min timer
This commit is contained in:
+5
-3
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"db_name": "PostgreSQL",
|
||||
"query": "\n SELECT\n NOW() AS \"started_at!\",\n NOW() + INTERVAL '2 minutes' AS \"execute_at!\"\n ",
|
||||
"query": "\n SELECT\n NOW() AS \"started_at!\",\n CASE\n WHEN $1 THEN NOW()\n ELSE NOW() + INTERVAL '2 minutes'\n END AS \"execute_at!\"\n ",
|
||||
"describe": {
|
||||
"columns": [
|
||||
{
|
||||
@@ -15,12 +15,14 @@
|
||||
}
|
||||
],
|
||||
"parameters": {
|
||||
"Left": []
|
||||
"Left": [
|
||||
"Bool"
|
||||
]
|
||||
},
|
||||
"nullable": [
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
"hash": "b22226128dbe12c7c4144928409480eb891bd6b793bf3b21691746f8eb5de113"
|
||||
"hash": "fcec6572c9543748dd515308fa4ad892348f29ab2ffe5ed4100a3aab8f22eb98"
|
||||
}
|
||||
Reference in New Issue
Block a user