summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraiqser <craiqser@gmail.com>2021-08-22 23:28:44 +0300
committerGitHub <noreply@github.com>2021-08-22 22:28:44 +0200
commitffc0959f9caa51aff8c9cfa691ef8fcd67470c7a (patch)
treeb954e41137e1bc31a22e56318fa7a047525eb936
parentcfb3f7fb393f47a62a5267df6237f426dc625a04 (diff)
downloadwiki-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.md2
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>';
```