mirror of https://github.com/LemmyNet/lemmy.git
31 lines
977 B
Rust
31 lines
977 B
Rust
use crate::newtypes::{InstanceId, PersonId};
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::instance_block;
|
|
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
derive(Queryable, Selectable, Associations, Identifiable)
|
|
)]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::instance::Instance))
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(table_name = instance_block))]
|
|
#[cfg_attr(feature = "full", diesel(primary_key(person_id, instance_id)))]
|
|
#[cfg_attr(feature = "full", diesel(check_for_backend(diesel::pg::Pg)))]
|
|
pub struct InstanceBlock {
|
|
pub person_id: PersonId,
|
|
pub instance_id: InstanceId,
|
|
pub published: DateTime<Utc>,
|
|
}
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = instance_block))]
|
|
pub struct InstanceBlockForm {
|
|
pub person_id: PersonId,
|
|
pub instance_id: InstanceId,
|
|
}
|