1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18<?php use Ruckusing\Migration\Base as Ruckusing_Migration_Base; class DropDirectusIpWhitelist extends Ruckusing_Migration_Base { public function up() { if ($this->has_table('directus_ip_whitelist')) { $this->drop_table('directus_ip_whitelist'); } }//up() public function down() { // we actually dont need this anymore }//down() }