Chatwoot/db/migrate/20170211092540_notnullableusers.rb

7 lines
198 B
Ruby
Raw Normal View History

class Notnullableusers < ActiveRecord::Migration[5.0]
def change
change_column :users, :name, :string, :null => false
change_column :users, :account_id, :integer, :null => false
end
end