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/updates/auth | |
| 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/updates/auth')
| -rw-r--r-- | sql/updates/auth/2013_xx_xx_00_auth_account.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/auth/2013_xx_xx_00_auth_account.sql b/sql/updates/auth/2013_xx_xx_00_auth_account.sql new file mode 100644 index 00000000000..9af73d41ee3 --- /dev/null +++ b/sql/updates/auth/2013_xx_xx_00_auth_account.sql @@ -0,0 +1,3 @@ +ALTER TABLE `account` + ADD COLUMN `mutereason` VARCHAR(255) NOT NULL DEFAULT '' AFTER `mutetime`, + ADD COLUMN `muteby` VARCHAR(50) NOT NULL DEFAULT '' AFTER `mutereason`; |
