Stores relation ship of items to persons:
NOTE: This is a very rough draft. Please add commentss on any aspects!
possibile purposes:
- if item has been viewed of downloaded (or number of views)
- if item has been editing by person?
From
Monitor Task/Bugs we could add:
remember_unchanged - duration until a notification is been sent that item has not been modified (in seconds)
is_bookmark
notify_on_change - Sent instant mail on changes and comments.
Implementation Details:
This object should not be derived from DbProjectItem because it's not real data there is not right managment needed for it. The rows of this table can not be querried directly.
Fields
| Type | Name | Comment |
|---|
| INT | id | primary key |
| INT | person | |
| INT | item | |
| BOOL | viewed | |
| INT | view_count | |
| DATETIME | viewed_last | |
| INT | notify_if_unchanged | duration until a notification is been sent that item has not been modified (in seconds) |
| BOOL | is_bookmark | |
| BOOL | notify_on_change | Sent instant mail on changes and comments (item is monitored) |