diff --git a/db/migrate/20120919152846_add_has_best_of_to_forum_threads.rb b/db/migrate/20120919152846_add_has_best_of_to_forum_threads.rb index df9ad3b0ae..d6fd5599fd 100644 --- a/db/migrate/20120919152846_add_has_best_of_to_forum_threads.rb +++ b/db/migrate/20120919152846_add_has_best_of_to_forum_threads.rb @@ -1,7 +1,7 @@ class AddHasBestOfToForumThreads < ActiveRecord::Migration def change - add_column :forum_threads, :has_summary, :boolean, default: false, null: false + add_column :forum_threads, :has_best_of, :boolean, default: false, null: false change_column :posts, :score, :float end