Plume/plume-models/src/blog_authors.rs
2018-09-30 14:13:56 +02:00

24 lines
485 B
Rust

use diesel::{self, QueryDsl, RunQueryDsl, ExpressionMethods};
use schema::blog_authors;
#[derive(Clone, Queryable, Identifiable)]
pub struct BlogAuthor {
pub id: i32,
pub blog_id: i32,
pub author_id: i32,
pub is_owner: bool,
}
#[derive(Insertable)]
#[table_name = "blog_authors"]
pub struct NewBlogAuthor {
pub blog_id: i32,
pub author_id: i32,
pub is_owner: bool,
}
impl BlogAuthor {
insert!(blog_authors, NewBlogAuthor);
get!(blog_authors);
}