change nest description to text

fixes error 500 on long nest description
This commit is contained in:
einsz 2023-01-03 19:19:07 +01:00
parent 3c210d388d
commit 4645427403

View file

@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class UpdateMakeDescriptionTextInNestsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('nests', function (Blueprint $table) {
$table->text('description')->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('nests', function (Blueprint $table) {
$table->text('description')->change();
});
}
}