User creation now possible!

Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
Louis Hollingworth 2024-01-14 16:49:36 +00:00
parent 215cf639bd
commit f671a5ba2f
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
12 changed files with 2185 additions and 44 deletions

View file

@ -0,0 +1,12 @@
{
"db_name": "SQLite",
"query": "\n INSERT INTO users (id, name, epost, xmpp, site, password, active_token)\n VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7) \n ",
"describe": {
"columns": [],
"parameters": {
"Right": 7
},
"nullable": []
},
"hash": "4b300d7e44f7b6c95cfb9a2791e81abb21ecf887cb7cf46e5dcb45567818cab4"
}

View file

@ -0,0 +1,56 @@
{
"db_name": "SQLite",
"query": "\n SELECT * FROM users\n ",
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Int64"
},
{
"name": "name",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "site",
"ordinal": 2,
"type_info": "Text"
},
{
"name": "xmpp",
"ordinal": 3,
"type_info": "Text"
},
{
"name": "epost",
"ordinal": 4,
"type_info": "Text"
},
{
"name": "password",
"ordinal": 5,
"type_info": "Text"
},
{
"name": "active_token",
"ordinal": 6,
"type_info": "Text"
}
],
"parameters": {
"Right": 0
},
"nullable": [
false,
false,
false,
true,
true,
false,
true
]
},
"hash": "a2c624a66b1999281d3b63e85b77785d0aae8d5ebc4865b7d42d7afd81e6f58c"
}