From 83cbbb154089d682f8264935b34e491e98d722eb Mon Sep 17 00:00:00 2001 From: Ron Lipke <222259+ronlipke@users.noreply.github.com> Date: Tue, 30 Jul 2019 22:27:27 -0400 Subject: [PATCH] Correct column name based on account table schema --- First-Time-Running-A-Server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/First-Time-Running-A-Server.md b/First-Time-Running-A-Server.md index 2181707..c8f1f94 100644 --- a/First-Time-Running-A-Server.md +++ b/First-Time-Running-A-Server.md @@ -9,7 +9,7 @@ For example, in linux step three would look something like this: $ mysql -u my_db_username -p mysql> use eqemu; - mysql> UPDATE account SET status = 255 WHERE name = 'my_character_name'; + mysql> UPDATE account SET status = 255 WHERE charname = 'my_character_name'; mysql> quit; In this example, `my_db_username` is the username that you set for the mysql database during server installation and `my_character_name` is the name of the character you setting to GM status.