12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- -record(feed, {
- id,
- top,
- aclver}).
- -record(entry, {
- id,
- entry_id,
- feed_id,
- from,
- to,
- title,
- description,
- created,
- 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}).
- -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,
- content,
- author_id,
- creation_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
- }).
|