I have added new column using migrations.
This is my new added field
$table->addColumn('lastname', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
This column added after modified
field. I want to change column order and want to put it after column name
. How can I do it using migrations ?