| 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 === |