<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class FixObjectivesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('objectives', function (Blueprint $table) { //$table->dropForeign('objectives_program_id_foreign'); //$table->dropColumn('program_id'); //$table->dropColumn('outcome_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }