Removed IP blacklist for now.

This commit is contained in:
flash 2023-01-05 15:56:36 +00:00
parent 86e465797d
commit c0e5e8c9ed
10 changed files with 16 additions and 198 deletions

View file

@ -0,0 +1,8 @@
<?php
namespace Misuzu\DatabaseMigrations\RemoveIpBlacklist;
use PDO;
function migrate_up(PDO $conn): void {
$conn->exec('DROP TABLE msz_ip_blacklist;');
}