internetee-registry/db/migrate/20180126104536_change_contacts_code_to_not_null.rb
2018-01-26 12:52:58 +02:00

5 lines
130 B
Ruby

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