Поскольку вы перенесли файлы миграции, вам нужно создать новый файл миграции с помощью команды artisan:
php artisan make:migration change_nullable_field_columns_to_vehicles_tables --table=vehicles
Во вновь созданный файл миграции добавьте следующие коды
public function up() {
Schema::table('vehicles', function (Blueprint $table) {
$table->date('service_date')->nullable()->change();
$table->integer('service_freq_km')->nullable()->change();
$table->integer('service_freq_months')->nullable()->change();
});
}
// Для php artisan down
public function down(){
Schema::table('vehicles', function (Blueprint $table) {
$table->date('service_date')->nullable(false)->change();
$table->integer('service_freq_km')->nullable(false)->change();
$table->integer('service_freq_months')->nullable(false)->change();
});
}
Теперь вы можете выполнить команду переноса
php artisan migrate