123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- -record(feed, {
- id,
- top,
- aclver}).
- -record(entry, {
- id,
- entry_id,
- feed_id,
- from,
- to,
- description,
- raw_description,
- created_time,
- hidden,
- access,
- shared,
- starred,
- deleted,
- likes,
- likes_count,
- comments,
- comments_rear,
- comments_count,
- media = [],
- etc,
- type = {user, normal},
- next,
- prev}).
- -record(id_seq, {thing,
- id = 100000}).
- -record(media, {
- id,
- title :: iolist(),
- width,
- height,
- html :: iolist(),
- url :: iolist(),
- version,
- thumbnail_url :: iolist(),
- type :: {atom(), atom() | string()},
- thumbnail_height}).
- -record(comment, {
- id,
- comment_id,
- entry_id,
- raw_content,
- content,
- author_id,
- create_time,
- media = [],
- parent,
- comments,
- comments_rear,
- next,
- prev }).
- -record(entry_likes, {
- entry_id,
- one_like_head,
- total_count
- }).
- -record(user_likes, {
- user_id,
- one_like_head,
- total_count
- }).
- -record(one_like, {
- id,
- user_id,
- entry_id,
- feed_id,
- created_time,
- next
- }).
- -record(hidden_feed, {id}).
- -record(user_etries_count, {
- user_id,
- entries = 0,
- comments = 0
- }).
|