internetee-registry/db/migrate/20180825193437_change_actions_operation_to_not_null.rb
2021-04-26 18:54:26 +05:00

5 lines
143 B
Ruby

class ChangeActionsOperationToNotNull < ActiveRecord::Migration[6.0]
def change
change_column_null :actions, :operation, false
end
end