7 lines
178 B
Ruby
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
|