Publish shitty code
This commit is contained in:
commit
2e36ee2758
24 changed files with 2845 additions and 0 deletions
14
.sqlx/query-487d4f0b61f41ae9fedc59ebdb4755a2846509ccea2ea5a6b1cc81263fc17ccb.json
generated
Normal file
14
.sqlx/query-487d4f0b61f41ae9fedc59ebdb4755a2846509ccea2ea5a6b1cc81263fc17ccb.json
generated
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"db_name": "PostgreSQL",
|
||||
"query": "DELETE FROM link WHERE id = $1",
|
||||
"describe": {
|
||||
"columns": [],
|
||||
"parameters": {
|
||||
"Left": [
|
||||
"Uuid"
|
||||
]
|
||||
},
|
||||
"nullable": []
|
||||
},
|
||||
"hash": "487d4f0b61f41ae9fedc59ebdb4755a2846509ccea2ea5a6b1cc81263fc17ccb"
|
||||
}
|
14
.sqlx/query-4d94b8d9c3af0a9cbddc706ee82869355500bfe6cb97f5e20e10ddfddd523136.json
generated
Normal file
14
.sqlx/query-4d94b8d9c3af0a9cbddc706ee82869355500bfe6cb97f5e20e10ddfddd523136.json
generated
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"db_name": "PostgreSQL",
|
||||
"query": "UPDATE link SET visit_count = visit_count + 1 WHERE id = $1",
|
||||
"describe": {
|
||||
"columns": [],
|
||||
"parameters": {
|
||||
"Left": [
|
||||
"Uuid"
|
||||
]
|
||||
},
|
||||
"nullable": []
|
||||
},
|
||||
"hash": "4d94b8d9c3af0a9cbddc706ee82869355500bfe6cb97f5e20e10ddfddd523136"
|
||||
}
|
34
.sqlx/query-54b60a99c8cff423cf3b202a0f4f70158a445b5f7d3b867b4068ab6a5b6557a0.json
generated
Normal file
34
.sqlx/query-54b60a99c8cff423cf3b202a0f4f70158a445b5f7d3b867b4068ab6a5b6557a0.json
generated
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"db_name": "PostgreSQL",
|
||||
"query": "SELECT id, slug, destination FROM link WHERE id = $1",
|
||||
"describe": {
|
||||
"columns": [
|
||||
{
|
||||
"ordinal": 0,
|
||||
"name": "id",
|
||||
"type_info": "Uuid"
|
||||
},
|
||||
{
|
||||
"ordinal": 1,
|
||||
"name": "slug",
|
||||
"type_info": "Text"
|
||||
},
|
||||
{
|
||||
"ordinal": 2,
|
||||
"name": "destination",
|
||||
"type_info": "Text"
|
||||
}
|
||||
],
|
||||
"parameters": {
|
||||
"Left": [
|
||||
"Uuid"
|
||||
]
|
||||
},
|
||||
"nullable": [
|
||||
false,
|
||||
false,
|
||||
false
|
||||
]
|
||||
},
|
||||
"hash": "54b60a99c8cff423cf3b202a0f4f70158a445b5f7d3b867b4068ab6a5b6557a0"
|
||||
}
|
15
.sqlx/query-c586609a7040e4a8191a904d527051c1540041d4c6305f0d8162bbef0d7bff0d.json
generated
Normal file
15
.sqlx/query-c586609a7040e4a8191a904d527051c1540041d4c6305f0d8162bbef0d7bff0d.json
generated
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"db_name": "PostgreSQL",
|
||||
"query": "UPDATE link SET destination = $2 WHERE id = $1",
|
||||
"describe": {
|
||||
"columns": [],
|
||||
"parameters": {
|
||||
"Left": [
|
||||
"Uuid",
|
||||
"Text"
|
||||
]
|
||||
},
|
||||
"nullable": []
|
||||
},
|
||||
"hash": "c586609a7040e4a8191a904d527051c1540041d4c6305f0d8162bbef0d7bff0d"
|
||||
}
|
28
.sqlx/query-e83004dd947b684af5ea9319fe136910e75d96a24800fd884c6cb3c1b6a03a89.json
generated
Normal file
28
.sqlx/query-e83004dd947b684af5ea9319fe136910e75d96a24800fd884c6cb3c1b6a03a89.json
generated
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"db_name": "PostgreSQL",
|
||||
"query": "SELECT id, destination FROM link WHERE slug = $1",
|
||||
"describe": {
|
||||
"columns": [
|
||||
{
|
||||
"ordinal": 0,
|
||||
"name": "id",
|
||||
"type_info": "Uuid"
|
||||
},
|
||||
{
|
||||
"ordinal": 1,
|
||||
"name": "destination",
|
||||
"type_info": "Text"
|
||||
}
|
||||
],
|
||||
"parameters": {
|
||||
"Left": [
|
||||
"Text"
|
||||
]
|
||||
},
|
||||
"nullable": [
|
||||
false,
|
||||
false
|
||||
]
|
||||
},
|
||||
"hash": "e83004dd947b684af5ea9319fe136910e75d96a24800fd884c6cb3c1b6a03a89"
|
||||
}
|
16
.sqlx/query-ecbfe9b3c87beef7162b5c5fc7e2cc25d5420a4dc5b02257f78d4afea7f9517c.json
generated
Normal file
16
.sqlx/query-ecbfe9b3c87beef7162b5c5fc7e2cc25d5420a4dc5b02257f78d4afea7f9517c.json
generated
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"db_name": "PostgreSQL",
|
||||
"query": "INSERT INTO link (id, slug, destination) VALUES ($1, $2, $3) ON CONFLICT DO NOTHING",
|
||||
"describe": {
|
||||
"columns": [],
|
||||
"parameters": {
|
||||
"Left": [
|
||||
"Uuid",
|
||||
"Text",
|
||||
"Text"
|
||||
]
|
||||
},
|
||||
"nullable": []
|
||||
},
|
||||
"hash": "ecbfe9b3c87beef7162b5c5fc7e2cc25d5420a4dc5b02257f78d4afea7f9517c"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue