Skip to content

Commit

Permalink
feat: add schema for person collects (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored May 16, 2024
1 parent c4e739d commit 39e65ac
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions 用户收藏.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,18 @@ type EpStatus = {
}
}
```

# 人物收藏

https://github.com/bangumi/dev-env/blob/master/sql/schema/chii_person_collects.sql

```SQL
CREATE TABLE IF NOT EXISTS
`chii_person_collects` (
`prsn_clt_id` MEDIUMINT(8) UNSIGNED NOT NULL,
`prsn_clt_cat` ENUM('prsn', 'crt') NOT NULL,
`prsn_clt_mid` MEDIUMINT(8) UNSIGNED NOT NULL,
`prsn_clt_uid` MEDIUMINT(8) UNSIGNED NOT NULL,
`prsn_clt_dateline` INT(10) UNSIGNED NOT NULL
) ENGINE = MyISAM DEFAULT CHARSET = utf8 COMMENT = '人物收藏';
```

0 comments on commit 39e65ac

Please sign in to comment.