diff options
| author | Bezo <BezoCCCP@gmail.com> | 2013-01-30 13:09:41 +0200 |
|---|---|---|
| committer | Bezo <BezoCCCP@gmail.com> | 2013-01-30 13:09:41 +0200 |
| commit | 760d62e934f8289cdd9950c04a4dbf588eddd742 (patch) | |
| tree | 94a867e8d7ae9b040ab25027fab0df59ba0078ca /sql/base | |
| parent | 8cd408ae6cb2a7f9eb84c9e2a57fc65a15ce6faf (diff) | |
Add Mute reason and mute by to the db so you can get this info from the db with the pinfo command when player get muted.
old LOGIN_UPD_MUTE_TIME change to LOGIN_UPD_MUTE_TIME_LOGIN due the use of it when character login to world.
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 5050906b008..e5ba6356da9 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', |
