lemmy/crates/db_schema/src/source/private_message.rs

37 lines
968 B
Rust
Raw Normal View History

2021-10-16 13:33:38 +00:00
use crate::{
newtypes::{DbUrl, PersonId, PrivateMessageId},
schema::private_message,
};
use serde::{Deserialize, Serialize};
#[derive(
Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize,
)]
#[table_name = "private_message"]
pub struct PrivateMessage {
pub id: PrivateMessageId,
pub creator_id: PersonId,
pub recipient_id: PersonId,
pub content: String,
pub deleted: bool,
pub read: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
pub ap_id: DbUrl,
pub local: bool,
}
2021-03-20 20:59:07 +00:00
#[derive(Insertable, AsChangeset, Default)]
#[table_name = "private_message"]
pub struct PrivateMessageForm {
pub creator_id: PersonId,
pub recipient_id: PersonId,
pub content: String,
pub deleted: Option<bool>,
pub read: Option<bool>,
pub published: Option<chrono::NaiveDateTime>,
pub updated: Option<chrono::NaiveDateTime>,
pub ap_id: Option<DbUrl>,
2021-03-20 20:59:07 +00:00
pub local: Option<bool>,
}