mirror of
https://github.com/versia-pub/activitypub.git
synced 2026-03-13 19:09:17 +01:00
update
This commit is contained in:
parent
b495fbe80e
commit
ba901981f0
7 changed files with 199 additions and 35 deletions
|
|
@ -6,9 +6,15 @@ use sea_orm::entity::prelude::*;
|
|||
#[sea_orm(table_name = "follow_relation")]
|
||||
pub struct Model {
|
||||
#[sea_orm(primary_key)]
|
||||
pub id: i32,
|
||||
pub id: String,
|
||||
pub followee_id: String,
|
||||
pub follower_id: String,
|
||||
pub ap_json: String,
|
||||
pub ap_accept_json: Option<String>,
|
||||
pub ap_id: Option<String>,
|
||||
pub ap_accept_id: Option<String>,
|
||||
pub accept_id: Option<String>,
|
||||
pub remote: bool,
|
||||
pub followee_host: Option<String>,
|
||||
pub follower_host: Option<String>,
|
||||
pub followee_inbox: Option<String>,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue