Commit 4b3950456d666bc92fcf123532e73ae82c3c5e12
1 parent
cf6d4dc1
Exists in
master
and in
4 other branches
notification level for user
Showing
3 changed files
with
14 additions
and
1 deletions
Show diff stats
app/models/user.rb
db/migrate/20130325173941_add_notification_level_to_user.rb
0 → 100644
db/schema.rb
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 | # |
12 | 12 | # It's strongly recommended to check this file into your version control system. |
13 | 13 | |
14 | -ActiveRecord::Schema.define(:version => 20130318212250) do | |
14 | +ActiveRecord::Schema.define(:version => 20130325173941) do | |
15 | 15 | |
16 | 16 | create_table "events", :force => true do |t| |
17 | 17 | t.string "target_type" |
... | ... | @@ -270,6 +270,7 @@ ActiveRecord::Schema.define(:version => 20130318212250) do |
270 | 270 | t.boolean "can_create_team", :default => true, :null => false |
271 | 271 | t.string "state" |
272 | 272 | t.integer "color_scheme_id", :default => 1, :null => false |
273 | + t.integer "notification_level", :default => 1, :null => false | |
273 | 274 | end |
274 | 275 | |
275 | 276 | add_index "users", ["admin"], :name => "index_users_on_admin" | ... | ... |