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

5 lines
135 B
Ruby

class ChangeContactsCodeToNotNull < ActiveRecord::Migration[6.0]
def change
change_column_null :contacts, :code, false
end
end