update column laravel migration code example
Example 1: laravel migration change column type
public function up()
{
Schema::table('sometable', function (Blueprint $table) {
$table->text('text')->change();
});
}
Example 2: change existing migration laravel
php artisan make:migration update_description_in_products_table