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