6 lines
147 B
Ruby
6 lines
147 B
Ruby
class RemoveDeprecatedFieldFromComments < ActiveRecord::Migration[5.1]
|
|
def change
|
|
remove_column :comments, :deprecated_body, :text
|
|
end
|
|
end
|