Merge pull request #1033 from chrishunt/move-dynamic-favicon-to-user

Move 'dynamic favicon' setting to User preference
This commit is contained in:
Sam
2013-06-17 17:31:02 -07:00
14 changed files with 31 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
class AddDynamicFaviconPreferenceToUser < ActiveRecord::Migration
def change
add_column :users, :dynamic_favicon, :boolean, default: false, null: false
end
end