|
|
@@ -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');
|
|
|
}
|
|
|
}
|