123456789101112131415161718192021222324252627282930313233 |
- <?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()
- {
- //
- }
- }
|