8a4702df92
Add tests for following models: - Blog - Instance - Media - User
25 lines
485 B
Rust
25 lines
485 B
Rust
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
|
|
|
|
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);
|
|
}
|