change column type flask migrate code example
Example 1: laravel migration change column name
Schema::table('users', function (Blueprint $table) {
$table->renameColumn('from', 'to');
});
Example 2: change column name sql
ALTER TABLE users
ALTER COLUMN first username varchar(20);