diff --git a/crates/storage/sqlx-data.json b/crates/storage/sqlx-data.json index 79fb022a..c198ee18 100644 --- a/crates/storage/sqlx-data.json +++ b/crates/storage/sqlx-data.json @@ -1874,19 +1874,6 @@ }, "query": "\n SELECT\n og.id AS grant_id,\n og.created_at AS grant_created_at,\n og.cancelled_at AS grant_cancelled_at,\n og.fulfilled_at AS grant_fulfilled_at,\n og.exchanged_at AS grant_exchanged_at,\n og.scope AS grant_scope,\n og.state AS grant_state,\n og.redirect_uri AS grant_redirect_uri,\n og.response_mode AS grant_response_mode,\n og.nonce AS grant_nonce,\n og.max_age AS grant_max_age,\n og.acr_values AS grant_acr_values,\n og.oauth2_client_id AS oauth2_client_id,\n og.code AS grant_code,\n og.response_type_code AS grant_response_type_code,\n og.response_type_token AS grant_response_type_token,\n og.response_type_id_token AS grant_response_type_id_token,\n og.code_challenge AS grant_code_challenge,\n og.code_challenge_method AS grant_code_challenge_method,\n og.requires_consent AS grant_requires_consent,\n os.id AS \"session_id?\",\n us.id AS \"user_session_id?\",\n us.created_at AS \"user_session_created_at?\",\n u.id AS \"user_id?\",\n u.username AS \"user_username?\",\n usa.id AS \"user_session_last_authentication_id?\",\n usa.created_at AS \"user_session_last_authentication_created_at?\",\n ue.id AS \"user_email_id?\",\n ue.email AS \"user_email?\",\n ue.created_at AS \"user_email_created_at?\",\n ue.confirmed_at AS \"user_email_confirmed_at?\"\n FROM\n oauth2_authorization_grants og\n LEFT JOIN oauth2_sessions os\n ON os.id = og.oauth2_session_id\n LEFT JOIN user_sessions us\n ON us.id = os.user_session_id\n LEFT JOIN users u\n ON u.id = us.user_id\n LEFT JOIN user_session_authentications usa\n ON usa.session_id = us.id\n LEFT JOIN user_emails ue\n ON ue.id = u.primary_email_id\n\n WHERE og.code = $1\n\n ORDER BY usa.created_at DESC\n LIMIT 1\n " }, - "99a1504e3cf80fb4eaad40e8593ac722ba1da7ee29ae674fa9ffe37dffa8b361": { - "describe": { - "columns": [], - "nullable": [], - "parameters": { - "Left": [ - "Int8", - "Text" - ] - } - }, - "query": "\n INSERT INTO user_email_verifications (user_email_id, code)\n VALUES ($1, $2)\n " - }, "a09dfe1019110f2ec6eba0d35bafa467ab4b7980dd8b556826f03863f8edb0ab": { "describe": { "columns": [], @@ -2053,69 +2040,6 @@ }, "query": "\n UPDATE user_email_verifications\n SET consumed_at = NOW()\n WHERE id = $1\n RETURNING consumed_at AS \"consumed_at!\"\n " }, - "bb5ad7b64a2901a0d94ec22e6b2e497c6d2748e644478a7345da94a61b4ed053": { - "describe": { - "columns": [ - { - "name": "verification_id", - "ordinal": 0, - "type_info": "Int8" - }, - { - "name": "verification_expired!", - "ordinal": 1, - "type_info": "Bool" - }, - { - "name": "verification_created_at", - "ordinal": 2, - "type_info": "Timestamptz" - }, - { - "name": "verification_consumed_at", - "ordinal": 3, - "type_info": "Timestamptz" - }, - { - "name": "user_email_id", - "ordinal": 4, - "type_info": "Int8" - }, - { - "name": "user_email", - "ordinal": 5, - "type_info": "Text" - }, - { - "name": "user_email_created_at", - "ordinal": 6, - "type_info": "Timestamptz" - }, - { - "name": "user_email_confirmed_at", - "ordinal": 7, - "type_info": "Timestamptz" - } - ], - "nullable": [ - false, - null, - false, - true, - false, - false, - false, - true - ], - "parameters": { - "Left": [ - "Text", - "Interval" - ] - } - }, - "query": "\n SELECT\n ev.id AS \"verification_id\",\n (ev.created_at + $2 < NOW()) AS \"verification_expired!\",\n ev.created_at AS \"verification_created_at\",\n ev.consumed_at AS \"verification_consumed_at\",\n ue.id AS \"user_email_id\",\n ue.email AS \"user_email\",\n ue.created_at AS \"user_email_created_at\",\n ue.confirmed_at AS \"user_email_confirmed_at\"\n FROM user_email_verifications ev\n INNER JOIN user_emails ue\n ON ue.id = ev.user_email_id\n WHERE ev.code = $1\n " - }, "bb5c43feb0e2ac1b8b31ab18423176057e795618ac64527bfb04fee91d86be2a": { "describe": { "columns": [ @@ -2170,6 +2094,52 @@ }, "query": "\n UPDATE compat_sso_logins\n SET\n exchanged_at = NOW()\n WHERE\n id = $1\n RETURNING exchanged_at AS \"exchanged_at!\"\n " }, + "d144679fac4fb1a6903060e87b08538db68fe734905fcd4e121acf487d23bd13": { + "describe": { + "columns": [ + { + "name": "verification_id", + "ordinal": 0, + "type_info": "Int8" + }, + { + "name": "verification_code", + "ordinal": 1, + "type_info": "Text" + }, + { + "name": "verification_expired!", + "ordinal": 2, + "type_info": "Bool" + }, + { + "name": "verification_created_at", + "ordinal": 3, + "type_info": "Timestamptz" + }, + { + "name": "verification_consumed_at", + "ordinal": 4, + "type_info": "Timestamptz" + } + ], + "nullable": [ + false, + false, + null, + false, + true + ], + "parameters": { + "Left": [ + "Text", + "Int8", + "Interval" + ] + } + }, + "query": "\n SELECT\n ev.id AS \"verification_id\",\n ev.code AS \"verification_code\",\n (ev.created_at + $3 < NOW()) AS \"verification_expired!\",\n ev.created_at AS \"verification_created_at\",\n ev.consumed_at AS \"verification_consumed_at\"\n FROM user_email_verifications ev\n WHERE ev.code = $1\n AND ev.user_email_id = $2\n " + }, "d2f767218ec2489058db9a0382ca0eea20379c30aeae9f492da4ba35b66f4dc7": { "describe": { "columns": [], @@ -2307,6 +2277,33 @@ }, "query": "\n SELECT \n ue.id AS \"user_email_id\",\n ue.email AS \"user_email\",\n ue.created_at AS \"user_email_created_at\",\n ue.confirmed_at AS \"user_email_confirmed_at\"\n FROM user_emails ue\n\n WHERE ue.user_id = $1\n AND ue.email = $2\n " }, + "dbeffa1433a96693b6c5dd501a834eef770946f8ad44fb846556729682a1bb9d": { + "describe": { + "columns": [ + { + "name": "id", + "ordinal": 0, + "type_info": "Int8" + }, + { + "name": "created_at", + "ordinal": 1, + "type_info": "Timestamptz" + } + ], + "nullable": [ + false, + false + ], + "parameters": { + "Left": [ + "Int8", + "Text" + ] + } + }, + "query": "\n INSERT INTO user_email_verifications (user_email_id, code)\n VALUES ($1, $2)\n RETURNING id, created_at\n " + }, "dbf9d2ee583d4dec07d7948c7540ff39b3e1de0c6abd168f47c02401f8417eec": { "describe": { "columns": [