7 lines
127 B
Rust
7 lines
127 B
Rust
|
#[derive(Queryable)]
|
||
|
pub struct Post {
|
||
|
pub id: i32,
|
||
|
pub title: String,
|
||
|
pub body: String,
|
||
|
pub published: bool,
|
||
|
}
|