2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{CommunityBlockId, CommunityId, 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::community_block;
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable))]
|
|
|
|
#[cfg_attr(feature = "full", belongs_to(crate::source::community::Community))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_block")]
|
2021-08-19 20:54:15 +00:00
|
|
|
pub struct CommunityBlock {
|
|
|
|
pub id: CommunityBlockId,
|
|
|
|
pub person_id: PersonId,
|
|
|
|
pub community_id: CommunityId,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "community_block")]
|
2021-08-19 20:54:15 +00:00
|
|
|
pub struct CommunityBlockForm {
|
|
|
|
pub person_id: PersonId,
|
|
|
|
pub community_id: CommunityId,
|
|
|
|
}
|