docbrown/db/migrate/20180508200948_remove_un_used_attributes_from_models.rb
2018-05-08 17:09:13 -04:00

17 lines
604 B
Ruby

class RemoveUnUsedAttributesFromModels < ActiveRecord::Migration[5.1]
def change
remove_column :articles, :boosted
remove_column :articles, :github_path
remove_column :articles, :image_jpg_quality
remove_column :articles, :intro_html
remove_column :articles, :programming_category
remove_column :articles, :sponsor_id
remove_column :articles, :sponsor_showing
remove_column :comments, :link_id
remove_column :comments, :article_conversion_inquiry
remove_column :comments, :article_conversion_lost
remove_column :comments, :article_conversion_won
end
end