Chatwoot/db/migrate/20170511134418_latlong.rb

7 lines
207 B
Ruby
Raw Normal View History

class Latlong < ActiveRecord::Migration[5.0]
def change
change_column :attachments, :coordinates_lat, :float, default: 0
change_column :attachments, :coordinates_long, :float, default: 0
end
end