On my migration file I have a number of new fields creation.
create_table :mytable do |t|
t.string :my_field, null: false
.........
And I am getting the following
Metrics/AbcSize: Assignment Branch Condition size for change is too high. [<1, 17, 0> 17.03/17]
What is the proper way to avoid that?