aboutsummaryrefslogtreecommitdiffstats
path: root/src/models.rs
blob: a0152c07687a731d2c07424471e3ad98c2d19fb0 (plain) (blame)
1
2
3
4
5
6
7
#[derive(Default, Serialize, Queryable)]
pub struct Post {
    pub id: i32,
    pub title: String,
    pub body: String,
    pub published: bool,
}