Edgewall Software

Changes between Version 6 and Version 7 of TracDev/Proposals/AdvancedNotification/DatabaseSchema


Ignore:
Timestamp:
Dec 20, 2014, 7:57:14 PM (9 years ago)
Author:
Peter Suter
Comment:

Committed notify_watch table [13551]

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/Proposals/AdvancedNotification/DatabaseSchema

    v6 v7  
    11{{{#!box important
    22This page was a draft. See [wiki:TracDev/DatabaseSchema/NotificationSystem] page now.
    3 
    4 Table `notify_watch` is still in draft state.
    53
    64The [#OpenQuestions Open questions] section might still contain unimplemented ideas.
     
    3937Note that this table does not store an (email) address, but the commonly used subscription tuple has an additional item `addr`. Usually such tuples that correspond to entries in this DB table contain a `addr` of `None`. Other tuples may contain an (email) address (e.g. retrieved from  a ticket CC field) but are missing the `sid` item instead.
    4038
    41 See [browser:psuter/trac/notification/model.py@advanced-notification-subscriptions.2#/ trac.notification.model.Subscription]
     39See [browser:psuter/trac/notification/model.py@advanced-notification-subscriptions.2#/Subscription trac.notification.model.Subscription]
    4240
    4341== Table `notify_watch`
     
    6159Use the `trac.notification.model.Watch` model class to access this table.
    6260
    63 See [browser:psuter/trac/notification/model.py@advanced-notification-dbtable-notify_watch#/ trac.notification.model.Watch]
     61See [browser:psuter/trac/notification/model.py@T11869_notify_watch_table#/Watch trac.notification.model.Watch]
    6462
    6563== Open Questions