mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 11:05:03 +01:00
Updates some backend stuff (#20852)
* Updates some backend stuff * Warning * update * Adds some indexes for speeeeeeeeed
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# Updating SQL from 47 to 48 -AffectedArc07
|
||||
# Updates ban table to add an exportable flag column
|
||||
ALTER TABLE `ban`
|
||||
ADD COLUMN `exportable` TINYINT NOT NULL DEFAULT '1' AFTER `unbanned_ip`;
|
||||
|
||||
ALTER TABLE `ban`
|
||||
ADD INDEX `exportable` (`exportable`);
|
||||
|
||||
# Marks all existing bans as non-exportable
|
||||
UPDATE ban SET exportable=0
|
||||
Reference in New Issue
Block a user