Actually i have two migration:
2024_10_29_000000_add_name_column.php and 2024_10_29_000001_add_another_name.php
that contain
return Migration::addColumns('users', [
'mycustomcolumn' => ['type' => 'decimal', 'length' => [10, 2], 'nullable' => true],
]);
and another one similar. All was working fine, but in my local environment ive droppen those columns, removed from "migrations" inside db and now if i re-enable the extension i get:

What im doing wrong?