diff options
author | Aokromes <jipr@hotmail.com> | 2013-09-02 16:29:25 +0200 |
---|---|---|
committer | Aokromes <jipr@hotmail.com> | 2013-09-02 16:29:25 +0200 |
commit | 79f446364c7d7a73138547fa215b25df574f7a10 (patch) | |
tree | 1a05e437d5b457b17afdf5f96e81c75a99b8e951 | |
parent | 0004d2e9cfb2dae4a7176762a3dad9e5a48633c9 (diff) |
Fix SQL typo after RBAC commits
-rw-r--r-- | sql/updates/world/2013_09_02_09_world_command.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/2013_09_02_09_world_command.sql b/sql/updates/world/2013_09_02_09_world_command.sql index 1fca31eaf57..e40ec5a355a 100644 --- a/sql/updates/world/2013_09_02_09_world_command.sql +++ b/sql/updates/world/2013_09_02_09_world_command.sql @@ -9,4 +9,4 @@ UPDATE `command` SET `permission` = @id+2 WHERE `name` = 'guild delete'; UPDATE `command` SET `permission` = @id+3 WHERE `name` = 'guild invite'; UPDATE `command` SET `permission` = @id+4 WHERE `name` = 'guild uninvite'; UPDATE `command` SET `permission` = @id+5 WHERE `name` = 'guild rank'; -UPDATE `command` SET `permission` = @id+6 WHERE `name` = 'guild rename'); +UPDATE `command` SET `permission` = @id+6 WHERE `name` = 'guild rename'; |