execute(); // Change mod to iid in warnings table DB::prepare('ALTER TABLE `{prefix}warnings` CHANGE `mod` `iid` bigint(128)') ->execute(); } public function down() { // Drop the notifications table DB::prepare("DROP TABLE `{prefix}notifications`")->execute(); // Change iid to mod in warnings table DB::prepare('ALTER TABLE `{prefix}warnings` CHANGE `iid` `mod` bigint(128)') ->execute(); } }