mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-22 08:41:01 +00:00
18 lines
535 B
JSON
18 lines
535 B
JSON
|
{
|
||
|
"db_name": "PostgreSQL",
|
||
|
"query": "\n INSERT INTO newsletter_issues (\n newsletter_issue_id, \n title, \n text_content, \n html_content,\n published_at\n )\n VALUES ($1, $2, $3, $4, now())\n ",
|
||
|
"describe": {
|
||
|
"columns": [],
|
||
|
"parameters": {
|
||
|
"Left": [
|
||
|
"Uuid",
|
||
|
"Text",
|
||
|
"Text",
|
||
|
"Text"
|
||
|
]
|
||
|
},
|
||
|
"nullable": []
|
||
|
},
|
||
|
"hash": "0b93f6f4f1bc59e7ee597ef6df52bbee1233d98e0a4cf53e29c153ccdae0537b"
|
||
|
}
|