osem-fcy/db/migrate/20170326084800_add_stars_to_votable_field.rb
2017-04-28 10:16:13 +00:00

5 lines
139 B
Ruby

class AddStarsToVotableField < ActiveRecord::Migration
def change
add_column :votable_fields, :stars, :integer, default: 5
end
end