discourse/db/migrate/20140425172618_add_titleable_to_badges.rb

6 lines
152 B
Ruby
Raw Normal View History

class AddTitleableToBadges < ActiveRecord::Migration
def change
add_column :badges, :allow_title, :boolean, null: false, default: false
end
end