Nessuna descrizione

2021_01_28_174905_fixObjectivesTable.php 526B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. use Illuminate\Database\Schema\Blueprint;
  3. use Illuminate\Database\Migrations\Migration;
  4. class FixObjectivesTable extends Migration
  5. {
  6. /**
  7. * Run the migrations.
  8. *
  9. * @return void
  10. */
  11. public function up()
  12. {
  13. Schema::table('objectives', function (Blueprint $table) {
  14. //$table->dropForeign('objectives_program_id_foreign');
  15. //$table->dropColumn('program_id');
  16. //$table->dropColumn('outcome_id');
  17. });
  18. }
  19. /**
  20. * Reverse the migrations.
  21. *
  22. * @return void
  23. */
  24. public function down()
  25. {
  26. //
  27. }
  28. }