From ffc0959f9caa51aff8c9cfa691ef8fcd67470c7a Mon Sep 17 00:00:00 2001 From: Craiqser Date: Sun, 22 Aug 2021 23:28:44 +0300 Subject: fix: typo 'name' to 'username' (#623) Fix field name of account table. --- docs/creating-accounts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 = ''; +SET gmlevel = 4 WHERE username = ''; ``` -- cgit