Files
nairobi/db/migrate/20181109111037_add_location_to_headings.rb
Matheus Miranda 06f07b1139 Add map to sidebar on Heading's page
Signed-off-by: Matheus Miranda <matheusmirandalacerda@gmail.com>
2018-11-16 09:05:23 +01:00

7 lines
178 B
Ruby

class AddLocationToHeadings < ActiveRecord::Migration
def change
add_column :budget_headings, :latitude, :text
add_column :budget_headings, :longitude, :text
end
end