2023_09_08_092903_alter_infobloks_table.php
641 Bytes
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('infobloks', function (Blueprint $table) {
$table->integer('sort')->default(100);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('infobloks', function (Blueprint $table) {
$table->dropColumn('sort');
});
}
};