2021_02_25_092328_change_material_suppliers.php 692 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. use Illuminate\Database\Migrations\Migration;
  3. use Illuminate\Database\Schema\Blueprint;
  4. use Illuminate\Support\Facades\Schema;
  5. class ChangeMaterialSuppliers extends Migration
  6. {
  7. /**
  8. * Run the migrations.
  9. *
  10. * @return void
  11. */
  12. public function up()
  13. {
  14. Schema::dropIfExists('material_supplier');
  15. Schema::create('material_suppliers', function (Blueprint $table) {
  16. $table->bigInteger('material_id');
  17. $table->bigInteger('supplier_id');
  18. });
  19. }
  20. /**
  21. * Reverse the migrations.
  22. *
  23. * @return void
  24. */
  25. public function down()
  26. {
  27. Schema::dropIfExists('material_suppliers');
  28. }
  29. }