MyBook
| id (PrimaryKey) | integer |
|---|---|
| updated_date | DateTime(UTC standard format) |
| user (ForeignKey) | myuser_id |
| book (ForeignKey) | book_id |
BookComment
| id (PrimaryKey) | integer |
|---|---|
| content | char(max_length) |
| updated_date | DateTime(UTC standard format) |
| mybook (ForeignKey) | mybook_id |
BookStar
| id (PrimaryKey) | integer |
|---|---|
| content | integer(10) |
| updated_date | DateTime(UTC standard format) |
| mybook (ForeignKey) | mybook_id |
BookMark
| id (PrimaryKey) | integer |
|---|---|
| content | char(max_length) |
| updated_date | DateTime(UTC standard format) |
| mybook (ForeignKey) | mybook_id |