Permalink
Browse files

part 2, drop comments.is_dragon

  • Loading branch information...
jcs committed May 22, 2017
1 parent 1fb0f23 commit 37510f70dcf5b21bcbf60c7b1a29db483a95b5b3
Showing with 6 additions and 2 deletions.
  1. +5 −0 db/migrate/20170522144135_remove_comments_dragon.rb
  2. +1 −2 db/schema.rb
@@ -0,0 +1,5 @@
class RemoveCommentsDragon < ActiveRecord::Migration
def change
remove_column :comments, :is_dragon
end
end
View
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170413161450) do
ActiveRecord::Schema.define(version: 20170522144135) do
create_table "comments", force: :cascade do |t|
t.datetime "created_at", null: false
@@ -30,7 +30,6 @@
t.boolean "is_moderated", default: false
t.boolean "is_from_email", default: false
t.integer "hat_id", limit: 4
t.boolean "is_dragon", default: false
end
add_index "comments", ["confidence"], name: "confidence_idx", using: :btree

0 comments on commit 37510f7

Please sign in to comment.