Edgewall Software

Changes between Version 2 and Version 3 of TracDev/DatabaseSchema/NotificationSystem


Ignore:
Timestamp:
Jul 31, 2015, 11:57:16 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/DatabaseSchema/NotificationSystem

    v2 v3  
    66
    77== Table `notify_subscription`
     8
     9Table description:
     10
    811||'''Table'''||'''Key'''||
    912||''notify_subscription''||''id''||
     13
     14Column description:
    1015
    1116||'''Columns'''||'''Type'''||'''Notes'''||
     
    1621||''sid''|| || The [wiki:TracDev/DatabaseSchema/Common#Tablesession session] ID of the subscriber. ||
    1722||''authenticated''||`int`|| `1` for authenticated session IDs, `0` for anonymous session IDs ||
    18 ||''distributor''|| || Identifies the distributor to used for this subscription (e.g. `email`) ||
    19 ||''format''|| || Identifies the MIME type to be used for this subscription (e.g. `text/plain` or `text/html`) ||
    20 ||''priority''||`int`||Precedence level of this subscription. E.g. `1` overrules `2`. ||
     23||''distributor''|| || Identifies the distributor to used for this subscription, eg `email` ||
     24||''format''|| || Identifies the MIME type to be used for this subscription, eg `text/plain` or `text/html` ||
     25||''priority''||`int`||Precedence level of this subscription, eg `1` overrules `2`. ||
    2126||''adverb''|| ||`always` or `never`||
     27
     28Index description:
    2229
    2330||'''Indices'''||
     
    2532||''class''||
    2633
    27 Stores if a subscription rule always/never applies for a certain user, at what priority and using what distribution method/format.
     34This table stores whether a subscription rule always/never applies for a certain user, at what priority and using what distribution method/format.
    2835
    2936Use the `trac.notification.model.Subscription` model class to access this table.
     
    3441
    3542== Table `notify_watch`
     43
     44Table description:
     45
    3646||'''Table'''||'''Key'''||
    3747||''notify_watch''||''id''||
     48
     49Column description:
    3850
    3951||'''Columns'''||'''Type'''||'''Notes'''||
     
    4557||''target''|| || The target of this subscription (e.g. a ticket id). ||
    4658
     59Index description:
     60
    4761||'''Indices'''||
    4862||''sid'', ''authenticated'', ''class''||
    4963||''class'', ''realm'', ''target''||
    5064
    51 Stores watches to identify the target resource(s) of a subscription (e.g. a watched ticket's id, wiki page filters, joined groups, etc.)
     65This table stores watches to identify the target resource(s) of a subscription. For example, a watched ticket's id, wiki page filters, joined groups, etc.
    5266
    5367Use the `trac.notification.model.Watch` model class to access this table.