laravel alter table column migration code example
Example 1: add column in laravel migration
php artisan make:migration add_paid_to_users_table --table=users
Example 2: laravel migration change column type
public function up()
{
Schema::table('sometable', function (Blueprint $table) {
$table->text('text')->change();
});
}