Skip to content

user_follows 用户关注表

字段名字段类型字段注释默认值可空备注
idbigint UNSIGNED主键 IDNO自动递增
user_idbigint UNSIGNED用户主键 IDNO关联字段 users->id
mark_typetinyint UNSIGNED操作类型1NO1.正向(关注) / 2.反向(屏蔽)
follow_typetinyint UNSIGNED目标类型1NO内容类型编号
follow_idbigint UNSIGNED关注目标 IDNO
user_notevarchar(128)用户备注YES用户对 follow 的对象进行备注
is_mutualtinyint UNSIGNED用户专用:是否互相标记0NO0.否 / 1.是
is_enabledtinyint UNSIGNED是否有效1NO0.无效 / 1.有效
expired_attimestamp小组专用:失效时间YES
created_attimestamp创建时间useCurrentNO比如 MySQL 默认值为 CURRENT_TIMESTAMP
updated_attimestamp更新时间YES
deleted_attimestamp删除时间YES

Released under the Apache-2.0 License