Changes between Version 20 and Version 21 of BluePrint/SocialMedia/GHC2013SocialMediaHITProcessing


Ignore:
Timestamp:
10/05/13 08:41:47 (11 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/SocialMedia/GHC2013SocialMediaHITProcessing

    v20 v21  
    7070http://booki.flossmanuals.net/sahana-eden/_draft/_v/1.0/building-a-new-application/ [[BR]]
    7171Copy it to {{{models/000_config.py}}} and add an entry for the hit module.
    72 === Add database tables for message processing tasks ===
    73 
    74 Received messages are stored in the "message log" table, msg_message.[[BR]]
    75 https://github.com/flavour/eden/blob/master/modules/s3db/msg.py#L93
    76 
    77 (This is a special kind of table called (in Eden terminology) a "superentity". This is like a superclass
    78 but for database tables. Records in multiple specialized tables have "parent" records in a shared
    79 superentity table, so other tables can refer to any of the specialized tables without needing a foreign
    80 key field for every one, by instead linking to the superentity record. References to ordinary
    81 non-superentity tables are simpler.)
     72=== Add a database table for message processing tasks ===
    8273
    8374We want to add a table that joins to this to hold the data entered by a worker for a message.