impress/db/migrate/20231111234255_remove_mall_spider_fields_from_item.rb
Matchu c725a11920 Remove unused NC Mall spider code & fields
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!
2023-11-11 15:45:38 -08:00

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