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;
|
|
|
|
|
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::community::Community))
|
|
|
|
)]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_block))]
|
2021-08-19 20:54:15 +00:00
|
|
|
pub struct CommunityBlockForm {
|
|
|
|
pub person_id: PersonId,
|
|
|
|
pub community_id: CommunityId,
|
|
|
|
}
|