Chatwoot/db/migrate/20161113074313_change_integer_limit_of_sender_id.rb

6 lines
154 B
Ruby
Raw Normal View History

class ChangeIntegerLimitOfSenderId < ActiveRecord::Migration[5.0]
def change
change_column :conversations, :sender_id, :integer, limit: 8
end
end