Add source IP to ban_appeals table

This commit is contained in:
Zankaria 2024-03-15 14:34:17 +01:00
parent c696ad4fa2
commit 7e3a531aa5
3 changed files with 8 additions and 5 deletions

View file

@ -290,6 +290,7 @@ CREATE TABLE IF NOT EXISTS `flood` (
CREATE TABLE IF NOT EXISTS `ban_appeals` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ban_id` int(10) unsigned NOT NULL,
`source_ip` varbinary(16) DEFAULT NULL,
`time` int(10) unsigned NOT NULL,
`message` text NOT NULL,
`denied` tinyint(1) NOT NULL,