2020-11-01 21:25:11 +00:00
|
|
|
{
|
|
|
|
"db": "PostgreSQL",
|
2022-03-14 10:58:08 +00:00
|
|
|
"0029b925e31429d25d23538804511943e2ea1fddc5a2db9a4e219c9b5be53fce": {
|
|
|
|
"query": "INSERT INTO users (user_id, username, password_hash)\n VALUES ($1, $2, $3)",
|
|
|
|
"describe": {
|
|
|
|
"columns": [],
|
|
|
|
"parameters": {
|
|
|
|
"Left": [
|
|
|
|
"Uuid",
|
|
|
|
"Text",
|
|
|
|
"Text"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"nullable": []
|
|
|
|
}
|
|
|
|
},
|
2021-03-13 11:14:22 +00:00
|
|
|
"51c9c995452d3359e3da7e2f2ff8a6e68690f740a36d2a32ec7c40b08931ebdb": {
|
|
|
|
"query": "\n INSERT INTO subscriptions (id, email, name, subscribed_at, status)\n VALUES ($1, $2, $3, $4, 'pending_confirmation')\n ",
|
2020-11-01 21:25:11 +00:00
|
|
|
"describe": {
|
|
|
|
"columns": [],
|
|
|
|
"parameters": {
|
|
|
|
"Left": [
|
|
|
|
"Uuid",
|
|
|
|
"Text",
|
|
|
|
"Text",
|
|
|
|
"Timestamptz"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"nullable": []
|
|
|
|
}
|
2021-03-13 11:14:22 +00:00
|
|
|
},
|
|
|
|
"753c8ecfac0ea7d052e60cb582e3b3ebac5e50eb133152712ca18ab5d5e202f3": {
|
|
|
|
"query": "\n INSERT INTO subscription_tokens (subscription_token, subscriber_id)\n VALUES ($1, $2)\n ",
|
|
|
|
"describe": {
|
|
|
|
"columns": [],
|
|
|
|
"parameters": {
|
|
|
|
"Left": [
|
|
|
|
"Text",
|
|
|
|
"Uuid"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"nullable": []
|
|
|
|
}
|
|
|
|
},
|
2022-03-14 10:58:08 +00:00
|
|
|
"7b57e2776a245ba1602f638121550485e2219a6ccaaa62b5ec3e4683e33a3b5f": {
|
|
|
|
"query": "\n SELECT email\n FROM subscriptions\n WHERE status = 'confirmed'\n ",
|
|
|
|
"describe": {
|
|
|
|
"columns": [
|
|
|
|
{
|
|
|
|
"ordinal": 0,
|
|
|
|
"name": "email",
|
|
|
|
"type_info": "Text"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"parameters": {
|
|
|
|
"Left": []
|
|
|
|
},
|
|
|
|
"nullable": [
|
|
|
|
false
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"9ab6536d2bf619381573b3bf13507d53b2e9cf50051e51c803e916f25b51abd2": {
|
|
|
|
"query": "SELECT email, name, status FROM subscriptions",
|
|
|
|
"describe": {
|
|
|
|
"columns": [
|
|
|
|
{
|
|
|
|
"ordinal": 0,
|
|
|
|
"name": "email",
|
|
|
|
"type_info": "Text"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ordinal": 1,
|
|
|
|
"name": "name",
|
|
|
|
"type_info": "Text"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ordinal": 2,
|
|
|
|
"name": "status",
|
|
|
|
"type_info": "Text"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"parameters": {
|
|
|
|
"Left": []
|
|
|
|
},
|
|
|
|
"nullable": [
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
false
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2021-03-13 11:14:22 +00:00
|
|
|
"a71a1932b894572106460ca2e34a63dc0cb8c1ba7a70547add1cddbb68133c2b": {
|
|
|
|
"query": "UPDATE subscriptions SET status = 'confirmed' WHERE id = $1",
|
|
|
|
"describe": {
|
|
|
|
"columns": [],
|
|
|
|
"parameters": {
|
|
|
|
"Left": [
|
|
|
|
"Uuid"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"nullable": []
|
|
|
|
}
|
|
|
|
},
|
2022-03-14 10:58:08 +00:00
|
|
|
"aa6ec2d18c8536eb8340bdf02a833440ff7954c503133ed99ebd6190822edf04": {
|
|
|
|
"query": "ALTER TABLE subscriptions DROP COLUMN email;",
|
|
|
|
"describe": {
|
|
|
|
"columns": [],
|
|
|
|
"parameters": {
|
|
|
|
"Left": []
|
|
|
|
},
|
|
|
|
"nullable": []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"acf1b96c82ddf18db02e71a0e297c822b46f10add52c54649cf599b883165e58": {
|
|
|
|
"query": "\n SELECT user_id, password_hash\n FROM users\n WHERE username = $1\n ",
|
|
|
|
"describe": {
|
|
|
|
"columns": [
|
|
|
|
{
|
|
|
|
"ordinal": 0,
|
|
|
|
"name": "user_id",
|
|
|
|
"type_info": "Uuid"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ordinal": 1,
|
|
|
|
"name": "password_hash",
|
|
|
|
"type_info": "Text"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"parameters": {
|
|
|
|
"Left": [
|
|
|
|
"Text"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"nullable": [
|
|
|
|
false,
|
|
|
|
false
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2021-03-13 11:14:22 +00:00
|
|
|
"ad120337ee606be7b8d87238e2bb765d0da8ee61b1a3bc142414c4305ec5e17f": {
|
|
|
|
"query": "SELECT subscriber_id FROM subscription_tokens WHERE subscription_token = $1",
|
|
|
|
"describe": {
|
|
|
|
"columns": [
|
|
|
|
{
|
|
|
|
"ordinal": 0,
|
|
|
|
"name": "subscriber_id",
|
|
|
|
"type_info": "Uuid"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"parameters": {
|
|
|
|
"Left": [
|
|
|
|
"Text"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"nullable": [
|
|
|
|
false
|
|
|
|
]
|
|
|
|
}
|
2020-11-01 21:25:11 +00:00
|
|
|
}
|
|
|
|
}
|