6 lines
132 B
6 lines
132 B
3 years ago
|
class RemoveCountyFromLocation < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
remove_column :locations, :county, :string
|
||
|
end
|
||
|
end
|