mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
514f2222e0
* convert naive time to utc time * compounding fixes * cargo fmt * fix the rest * fix down migration * fix migrations * fix after merge * clippy fix * ap-fed 0.5.0 --------- Co-authored-by: Nutomic <me@nutomic.com>
23 lines
811 B
Rust
23 lines
811 B
Rust
use crate::newtypes::{PersonBlockId, PersonId};
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::person_block;
|
|
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::person::Person)))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_block))]
|
|
pub struct PersonBlock {
|
|
pub id: PersonBlockId,
|
|
pub person_id: PersonId,
|
|
pub target_id: PersonId,
|
|
pub published: DateTime<Utc>,
|
|
}
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_block))]
|
|
pub struct PersonBlockForm {
|
|
pub person_id: PersonId,
|
|
pub target_id: PersonId,
|
|
}
|