6 lines
137 B
Ruby
6 lines
137 B
Ruby
class RemoveGeozoneIdFromBudgetHeadings < ActiveRecord::Migration
|
|
def change
|
|
remove_column :budget_headings, :geozone_id
|
|
end
|
|
end
|