Allow badges to be marked as "titleable".

This commit is contained in:
Vikhyat Korrapati
2014-04-25 23:55:29 +05:30
parent 535965263a
commit b4e037dfb2
15 changed files with 51 additions and 26 deletions

View File

@@ -0,0 +1,5 @@
class AddTitleableToBadges < ActiveRecord::Migration
def change
add_column :badges, :allow_title, :boolean, null: false, default: false
end
end