т.е. создать новый файл миграции?
<?php namespace Boarworm\Pvgallery\Updates;
use Schema;
use October\Rain\Database\Updates\Migration;
class AddAlbumFront extends Migration
{
public function up()
{
Schema::table('boarworm_pvgallery_items', function($table)
{
$table->boolean('active')->default(true);
});
}
public function down()
{
Schema::table('boarworm_pvgallery_items', function($table)
{
$table->dropIfExists('active');
});
}
}