Plume/plume-models/src/post_authors.rs

27 lines
557 B
Rust
Raw Normal View History

2018-04-24 11:21:39 +02:00
use diesel::{self, PgConnection, QueryDsl, RunQueryDsl, ExpressionMethods};
use posts::Post;
use users::User;
2018-04-23 16:37:49 +02:00
use schema::post_authors;
2018-04-29 22:23:44 +02:00
#[derive(Queryable, Identifiable, Associations)]
#[belongs_to(Post)]
#[belongs_to(User, foreign_key = "author_id")]
2018-04-23 16:37:49 +02:00
pub struct PostAuthor {
pub id: i32,
pub post_id: i32,
pub author_id: i32
}
#[derive(Insertable)]
#[table_name = "post_authors"]
pub struct NewPostAuthor {
pub post_id: i32,
pub author_id: i32
}
impl PostAuthor {
insert!(post_authors, NewPostAuthor);
get!(post_authors);
2018-04-23 16:37:49 +02:00
}