diff options
author | Aokromes <jipr@hotmail.com> | 2013-02-04 06:55:26 -0800 |
---|---|---|
committer | Aokromes <jipr@hotmail.com> | 2013-02-04 06:55:26 -0800 |
commit | 6d8a69d64039f8a8e03fd83a0dd1ab08f50e8455 (patch) | |
tree | 5ef8668b0ff6625b2ecf1abf01e76dd58b7a58fb /sql/base | |
parent | 67f686106d7d372d1ed652800582df15999d099c (diff) | |
parent | 83e3bf6d6d76156f36f3eaec28ef2244f9826fdf (diff) |
Merge pull request #9099 from Bezo/mutenew
Add Mute reason and mute by to the db so you can get this info from the ...
Diffstat (limited to 'sql/base')
-rw-r--r-- | sql/base/auth_database.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index 75626cb2097..24e15893461 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -38,6 +38,8 @@ CREATE TABLE `account` ( `online` tinyint(3) unsigned NOT NULL DEFAULT '0', `expansion` tinyint(3) unsigned NOT NULL DEFAULT '2', `mutetime` bigint(20) NOT NULL DEFAULT '0', + `mutereason` VARCHAR(255) NOT NULL DEFAULT '', + `muteby` VARCHAR(50) NOT NULL DEFAULT '', `locale` tinyint(3) unsigned NOT NULL DEFAULT '0', `os` varchar(3) NOT NULL DEFAULT '', `recruiter` int(10) unsigned NOT NULL DEFAULT '0', |