Files
grecia/db/migrate/20200831112559_remove_deprecated_field_from_comments.rb
taitus 5eed36ca8e Remove deprecated attribute from Comments
A field from Comment is deprecated and we no longer need it.
2020-09-08 12:13:01 +02:00

6 lines
147 B
Ruby

class RemoveDeprecatedFieldFromComments < ActiveRecord::Migration[5.1]
def change
remove_column :comments, :deprecated_body, :text
end
end