docbrown/db/migrate/20211007172232_drop_boost_states_from_articles.rb
Ben Halpern b0a79da072
✂️✂️✂️ Remove boosted states from articles (legacy/dead code) (#14977)
* Remove boosted states from articles (legacy/dead code)

* Fix indentation
2021-10-07 14:39:34 -04:00

7 lines
171 B
Ruby

class DropBoostStatesFromArticles < ActiveRecord::Migration[6.1]
def change
safety_assured do
remove_column :articles, :boost_states, :jsonb
end
end
end