mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-19 03:24:42 -04:00
* feat: test gotrue when app start, use state for gotrue client, use gotrue UUID instead of BIGINT for user uid * feat: backward compatibility with native authetication * fix: native auth use uuid instead * fix: sqlx preparation * fix: sqlx metadata and unused variable * fix: clippy * fix: create workspace if not exist after sign in * chore: update .sqlx with new query * feat: query workspace * revert: revert using i64 for user id * fix: update sqlx queries * fix: update .sqlx metadata * feat: only use uuid from sqlx types, select user_profile view * ci: add version check * ci: add missing sqlx files * chore: cargo fmt
28 lines
555 B
JSON
28 lines
555 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "\n SELECT uid, password\n FROM af_user\n WHERE email = $1\n ",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "uid",
|
|
"type_info": "Int8"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "password",
|
|
"type_info": "Text"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Text"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "6b5d36d77c80339e481aece5d09bf7345c8c81a5e387c43cdd2eebd01f9c9436"
|
|
}
|