We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm having the following error when trying to login:
It's because "user" is a reserved keyword, and should be quoted when executing the query, or it returns the currently connected user.
dabba=# select * from user; user ---------- postgres (1 row)
dabba=# select * from "user"; id | owned_zone_id | zone_id | email | password | firstname | lastname | dob | is_verified | roles | wallet | fidelity | created_at ----+---------------+---------+-------+----------+-----------+----------+-----+-------------+-------+--------+----------+------------ (0 rows)
Which database engine are you actually using in production? MariaDB?
The text was updated successfully, but these errors were encountered:
oui on utilise MariaDB. Je vais regarder pour changer le nom de la table.
Sorry, something went wrong.
Ce n'est pas prioritaire, je vais utiliser MariaDB dans Docker. J'ai été induit en erreur parce que le fichier .env semble utiliser Postgres.
.env
No branches or pull requests
I'm having the following error when trying to login:
It's because "user" is a reserved keyword, and should be quoted when executing the query, or it returns the currently connected user.
Which database engine are you actually using in production? MariaDB?
The text was updated successfully, but these errors were encountered: