What data is recorded by this site?
When a user creates a game, the site does not store any data on the server.
When a user submits an article in a game, the article submission information is recorded.
The article submission data set contains an identification number (id) that is used for future reference.
The game token from the user's session is retained to track to which game a user submits an article.
The date and time of submission are also recorded for future reference.
(Both created_at and updated_at contain the same value and are duplicated by convention.)
This is the actual table structure of this site:
+------------+---------------+------+-----+---------+----------------+
| Field      | Type          | Null | Key | Default | Extra          |
+------------+---------------+------+-----+---------+----------------+
| id         | int(11)       | NO   | PRI | NULL    | auto_increment |
| token      | varchar(255)  | NO   | MUL | NULL    |                |
| url        | varchar(1024) | NO   |     | NULL    |                |
| created_at | datetime      | NO   |     | NULL    |                |
| updated_at | datetime      | NO   |     | NULL    |                |
+------------+---------------+------+-----+---------+----------------+