journalduhacker/db/migrate/20140825225915_add_tag_hotness_mod.rb

6 lines
132 B
Ruby
Raw Normal View History

2014-08-26 01:11:53 +02:00
class AddTagHotnessMod < ActiveRecord::Migration
def change
add_column :tags, :hotness_mod, :integer, :default => 0
end
end