migration for adding hot_score

This commit is contained in:
kikito
2015-09-03 19:16:08 +02:00
parent b0098e33fb
commit b46a3e5452
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddHotScoreToDebates < ActiveRecord::Migration
def change
add_column :debates, :hot_score, :bigint, default: 0
end
end