Merge branch 'ControlPanel-gg:development' into development

This commit is contained in:
Dennis 2023-01-05 17:54:11 +01:00 committed by GitHub
commit d55a6b1944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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->string('description')->change();
});
}
}