- db migration: change length of attribute 'label' to 255

This commit is contained in:
Arno Kaimbacher 2021-06-16 10:17:25 +02:00
parent 3aef68f98d
commit a31a3e22a3

View File

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