We haven't used the mall spider in this app in forever (I guess we even deleted the code at some point?), but there was some vestigial stuff left. Goodbye!
6 lines
217 B
Ruby
6 lines
217 B
Ruby
class RemoveMallSpiderFieldsFromItem < ActiveRecord::Migration[7.1]
|
|
def change
|
|
remove_column :items, :sold_in_mall, default: false, null: false
|
|
remove_column :items, :last_spidered, precision: nil
|
|
end
|
|
end
|