diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-21 16:00:48 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-21 16:00:48 -0500 |
commit | 2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09 (patch) | |
tree | d9f10b76aed8c9ba544a0f5af3c4e49981cc3329 /mediagoblin/db/models.py | |
parent | 0cdebda7fc533384bd725412365325edcbeb038c (diff) | |
parent | a30d2d8b6ca0837737e92b09bac74c4504ba0182 (diff) | |
download | mediagoblin-2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09.tar.lz mediagoblin-2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09.tar.xz mediagoblin-2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09.zip |
Merge remote-tracking branch 'refs/remotes/rodney757/notifications'
Diffstat (limited to 'mediagoblin/db/models.py')
-rw-r--r-- | mediagoblin/db/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 9cb39ff4..4341e086 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -69,6 +69,7 @@ class User(Base, UserMixin): # Intented to be nullable=False, but migrations would not work for it # set to nullable=True implicitly. wants_comment_notification = Column(Boolean, default=True) + wants_notifications = Column(Boolean, default=True) license_preference = Column(Unicode) is_admin = Column(Boolean, default=False, nullable=False) url = Column(Unicode) |