This commit is contained in:
2022-07-16 13:33:59 +00:00
committed by GitHub
parent 96cf0867fd
commit 8ff1520d63
6 changed files with 113 additions and 2 deletions

10
doc/db/authors.md Normal file
View File

@@ -0,0 +1,10 @@
| Name | Description | Type |
|:----:|:-----------:|:----:|
| id | User id | integer |
| name | Author name | string |
| creator_id | Fanbox creator id | string |
| icon | File id of icon | integer |
| big_icon | File id of big icon | integer |
| background | File id of background | integer |
| comment | Author comment | string |
| webpage | Author webpage | string |

7
doc/db/files.md Normal file
View File

@@ -0,0 +1,7 @@
| Name | Description | Type |
|:----:|:-----------:|:----:|
| id | File id | integer |
| path | The path of the file | string |
| last_modified | The last time the file was modified(HTTP Header) | timestamp |
| etag | The etag(HTTP Header) of the file | string |
| url | The source url | string |

View File

@@ -5,3 +5,4 @@
| author | Author name | string |
| uid | User id of the author | integer |
| description | Description of artwork | string |
| count | Number of pages | integer |

5
doc/db/pixiv_files.md Normal file
View File

@@ -0,0 +1,5 @@
| Name | Description | Type |
|:----:|:-----------:|:----:|
| id | Artwork id | integer |
| file_id | File id | integer |
| page | Page number | integer |