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
You can directly access the database and set the admin field to true.
admin
UPDATE users SET admin = 1 WHERE email = '[email protected]';
Just be careful. Make sure only the accounts you want are marked as admin:
select email from users where admin = 1;
admin is a boolean column - you might have to use true instead depending on the DB type you are using.
true
Originally posted by @pglombardo in #2404 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You can directly access the database and set the
admin
field to true.Just be careful. Make sure only the accounts you want are marked as admin:
admin
is a boolean column - you might have to usetrue
instead depending on the DB type you are using.Originally posted by @pglombardo in #2404 (comment)
The text was updated successfully, but these errors were encountered: