diff options
| author | Craiqser <craiqser@gmail.com> | 2021-08-22 23:28:44 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-22 22:28:44 +0200 |
| commit | ffc0959f9caa51aff8c9cfa691ef8fcd67470c7a (patch) | |
| tree | b954e41137e1bc31a22e56318fa7a047525eb936 | |
| parent | cfb3f7fb393f47a62a5267df6237f426dc625a04 (diff) | |
| download | wiki-ffc0959f9caa51aff8c9cfa691ef8fcd67470c7a.tar.gz wiki-ffc0959f9caa51aff8c9cfa691ef8fcd67470c7a.tar.bz2 wiki-ffc0959f9caa51aff8c9cfa691ef8fcd67470c7a.zip | |
fix: typo 'name' to 'username' (#623)
Fix field name of account table.
| -rw-r--r-- | docs/creating-accounts.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/creating-accounts.md b/docs/creating-accounts.md index 78af915..d539689 100644 --- a/docs/creating-accounts.md +++ b/docs/creating-accounts.md @@ -44,6 +44,6 @@ To update an account to security level 4 you need to manually edit the fields in ```sql UPDATE account_access AS access INNER JOIN account AS account ON access.id = account.id -SET gmlevel = 4 WHERE name = '<user>'; +SET gmlevel = 4 WHERE username = '<user>'; ``` |
