-
Hi all, Here's hydra.yml:
From Windows cmd, I'm trying to create my first client with:
While in the VSCode debug console:
I've already done manual migration with: But I think the problem is still linked to the db migration. Thanks for your time. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello @orestevip The error message you're seeing indicates that there's a column missing in your database. Specifically, the
Unfortunately, without more specific information or access to your environment, it's difficult to provide a more precise solution. If the problem persists, consider reaching out to the Ory community or checking the Ory documentation for more information. Let me know if that helped! I will mark this as answered due to the age of the discussion, but feel free to revive the discussion at any point. |
Beta Was this translation helpful? Give feedback.
Hello @orestevip
so sorry for the late message!
The error message you're seeing indicates that there's a column missing in your database. Specifically, the
authorization_code_grant_access_token_lifespan
column is not found. This column is part of the OAuth 2.0 Client configuration and is used to specify the lifespan of the access token for the authorization code grant type.This issue typically arises when the database migrations have not been applied correctly or fully. You mentioned that you've already run the migration command hydra migrate sql db-url, but the error persists.
Here are a few things you could try: