Kaynağa Gözat

修改服务商迁移文件

ajun 5 yıl önce
ebeveyn
işleme
143a35e37a

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