Remove deprecated attribute from Comments

A field from Comment is deprecated and we no longer need it.
This commit is contained in:
taitus
2020-08-31 13:28:54 +02:00
parent e39b72d945
commit 5eed36ca8e
2 changed files with 5 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class RemoveDeprecatedFieldFromComments < ActiveRecord::Migration[5.1]
def change
remove_column :comments, :deprecated_body, :text
end
end

View File

@@ -397,7 +397,6 @@ ActiveRecord::Schema.define(version: 20200908084257) do
create_table "comments", id: :serial, force: :cascade do |t|
t.integer "commentable_id"
t.string "commentable_type"
t.text "deprecated_body"
t.string "subject"
t.integer "user_id", null: false
t.datetime "created_at"