Changes between Version 3 and Version 4 of DeveloperGuidelines/SaveSearchAndSubscription
- Timestamp:
- 03/26/12 18:29:04 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/SaveSearchAndSubscription
v3 v4 10 10 11 11 ==== Save Search ==== 12 Holds information about the search query and the parameters that are saved by the user. The data model can be found in mod els/04_pr.py.12 Holds information about the search query and the parameters that are saved by the user. The data model can be found in modules/eden/pr.py. 13 13 14 14 ||'''Field Name'''||'''Purpose'''||'''Datatype/table'''|| 15 || timestamp ||Keeps the track of time of creation and subsequent modifications. ||datetime||16 15 || user_id ||The user id of the user who saved the search. ||FK referenced from auth_user.id (integer)|| 17 16 ||subscribed||The subscribed status of the user to a particular saved search.||boolean|| 18 17 ||search_vars||The search parameters for the search saved by the user||string (Assumption for the time being)|| 19 18 ||person_id||The person_id of the user who saves the search||FK referenced from pr_person|| 20 19 || timestamp ||Keeps the track of time of creation and subsequent modifications. ||datetime|| 21 20 ==== Subscription ==== 22 21 Holds information about the subscription details. The data model can be found in models/msg.py.