7 lines
178 B
Ruby
7 lines
178 B
Ruby
class RemoveGeoFieldsFromEvents < ActiveRecord::Migration[8.1]
|
|
def change
|
|
remove_column :events, :country_code, :string
|
|
remove_column :events, :city, :string
|
|
end
|
|
end
|