2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{PersonBlockId, PersonId};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-08-19 20:54:15 +00:00
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::person_block;
|
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::person::Person)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_block))]
|
2021-08-19 20:54:15 +00:00
|
|
|
pub struct PersonBlock {
|
|
|
|
pub id: PersonBlockId,
|
|
|
|
pub person_id: PersonId,
|
|
|
|
pub target_id: PersonId,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person_block))]
|
2021-08-19 20:54:15 +00:00
|
|
|
pub struct PersonBlockForm {
|
|
|
|
pub person_id: PersonId,
|
|
|
|
pub target_id: PersonId,
|
|
|
|
}
|