version 0.2.0, account staging

This commit is contained in:
red binder 2026-06-22 22:55:55 +02:00
commit 3378b170ec
15 changed files with 251 additions and 45 deletions

View file

@ -0,0 +1,28 @@
{
"db_name": "PostgreSQL",
"query": "SELECT nex_key FROM nex_accounts WHERE pid = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "nex_key",
"type_info": "Bytea",
"origin": {
"Table": {
"table": "nex_accounts",
"name": "nex_key"
}
}
}
],
"parameters": {
"Left": [
"Int4"
]
},
"nullable": [
false
]
},
"hash": "1a808ced9b9a9c16ac33f512f654f610a6a9abba836191b99504d4c9ee2f7393"
}

View file

@ -1,17 +0,0 @@
{
"db_name": "PostgreSQL",
"query": "insert into nex_accounts (\n pid, principal_name, email, nex_key\n ) values (\n $1, $2, $3, $4\n )",
"describe": {
"columns": [],
"parameters": {
"Left": [
"Int4",
"Varchar",
"Varchar",
"Bytea"
]
},
"nullable": []
},
"hash": "34f1dcfd8c6253ba5594808b8c37b3f4ad3d398edd233221b5983522b37f3579"
}

View file

@ -0,0 +1,14 @@
{
"db_name": "PostgreSQL",
"query": "delete from staged_nex_accounts where pid = $1",
"describe": {
"columns": [],
"parameters": {
"Left": [
"Int4"
]
},
"nullable": []
},
"hash": "52d2ac25e2c21058e059c39d1a071f9f505fdf2c2ece4023842704f97f60b0ca"
}

View file

@ -0,0 +1,40 @@
{
"db_name": "PostgreSQL",
"query": "\n SELECT pid, nex_key FROM staged_nex_accounts WHERE pid = $1\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "pid",
"type_info": "Int4",
"origin": {
"Table": {
"table": "staged_nex_accounts",
"name": "pid"
}
}
},
{
"ordinal": 1,
"name": "nex_key",
"type_info": "Bytea",
"origin": {
"Table": {
"table": "staged_nex_accounts",
"name": "nex_key"
}
}
}
],
"parameters": {
"Left": [
"Int4"
]
},
"nullable": [
false,
false
]
},
"hash": "b7c02e50d638b6eb590a8587bf210fb7a48bb6bad15dd8a2cba6e2ea2413d40e"
}

View file

@ -0,0 +1,17 @@
{
"db_name": "PostgreSQL",
"query": "insert into nex_accounts (\n pid, principal_name, email, nex_key\n ) values (\n $1, $2, $3, $4\n )",
"describe": {
"columns": [],
"parameters": {
"Left": [
"Int4",
"Varchar",
"Varchar",
"Bytea"
]
},
"nullable": []
},
"hash": "d26bde57980b537b6529856653f38ccbbc965c030cd1fb957e8d9c1a8df10bdd"
}

View file

@ -0,0 +1,15 @@
{
"db_name": "PostgreSQL",
"query": "INSERT INTO staged_nex_accounts (\n pid, nex_key\n ) values (\n $1, $2\n )",
"describe": {
"columns": [],
"parameters": {
"Left": [
"Int4",
"Bytea"
]
},
"nullable": []
},
"hash": "f58463b6ad7efbbd69d7ba4849bafd38d6db52734517874358585dc613fc56a6"
}