34 lines
726 B
PHP
34 lines
726 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use App\Models\Message;
|
|
|
|
class FixMessagesTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('messages', function ($table) {
|
|
$table->string('recipients')->nullable()->change();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Message::where('recipients', null)->delete();
|
|
Schema::table('messages', function ($table) {
|
|
$table->string('recipients')->nullable(false)->change();
|
|
});
|
|
}
|
|
}
|