Chatwoot/db/migrate/20170124104836_change_contact_to_bigint.rb

6 lines
125 B
Ruby
Raw Normal View History

class ChangeContactToBigint < ActiveRecord::Migration[5.0]
def change
change_column :contacts, :id , :bigint
end
end