Changes between Version 3 and Version 4 of DeveloperGuidelines/SaveSearchAndSubscription


Ignore:
Timestamp:
03/26/12 18:29:04 (13 years ago)
Author:
Ashwyn
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/SaveSearchAndSubscription

    v3 v4  
    1010
    1111==== 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 models/04_pr.py.
     12Holds 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.
    1313
    1414||'''Field Name'''||'''Purpose'''||'''Datatype/table'''||
    15 ||  timestamp ||Keeps the track of time of creation and subsequent modifications. ||datetime||
    1615|| user_id ||The user id of the user who saved the search. ||FK referenced from auth_user.id (integer)||
    1716||subscribed||The subscribed status of the user to a particular saved search.||boolean||
    1817||search_vars||The search parameters for the search saved by the user||string (Assumption for the time being)||
    1918||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||
    2120==== Subscription ====
    2221Holds information about the subscription details. The data model can be found in models/msg.py.