Bladeren bron

修改服务商迁移文件

ajun 5 jaren geleden
bovenliggende
commit
143a35e37a
1 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. 3 3
      database/migrations/2021_03_18_163135_create_facilitators_table.php

+ 3 - 3
database/migrations/2021_03_18_163135_create_discharge_providers_table.php → database/migrations/2021_03_18_163135_create_facilitators_table.php

@@ -4,7 +4,7 @@ use Illuminate\Database\Migrations\Migration;
 use Illuminate\Database\Schema\Blueprint;
 use Illuminate\Database\Schema\Blueprint;
 use Illuminate\Support\Facades\Schema;
 use Illuminate\Support\Facades\Schema;
 
 
-class CreateDischargeProvidersTable extends Migration
+class CreateFacilitatorsTable extends Migration
 {
 {
     /**
     /**
      * Run the migrations.
      * Run the migrations.
@@ -13,7 +13,7 @@ class CreateDischargeProvidersTable extends Migration
      */
      */
     public function up()
     public function up()
     {
     {
-        Schema::create('discharge_providers', function (Blueprint $table) {
+        Schema::create('facilitators', function (Blueprint $table) {
             $table->id();
             $table->id();
             $table->string('name');
             $table->string('name');
             $table->timestamps();
             $table->timestamps();
@@ -27,6 +27,6 @@ class CreateDischargeProvidersTable extends Migration
      */
      */
     public function down()
     public function down()
     {
     {
-        Schema::dropIfExists('discharge_providers');
+        Schema::dropIfExists('facilitators');
     }
     }
 }
 }