Если перечисления изменены в файле enums. php, как бы я изменил миграцию?
У меня есть файл миграции, подобный следующему:
public function up()
{
Schema::create('increase_pond_height', function (Blueprint $table) {
$table->increments('id');
$table->float('height', 8, 2);
$table->enum('purpose', Config::get('enums.increase_pond_height_purposes'));
$table->string('comments', 500)->nullable();
$table->timestamps();
});
}
У меня есть перечисление. php в Config, как показано ниже -
<?php
return [
'increase_pond_height_purposes' => ['innoculum', 'harvest', 'media_addition']
];