about summary refs log tree commit diff
path: root/src/models.rs
blob: a7ed8a91df030adbf88b7ee26f04c9c8a9b108ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use chrono::prelude::{DateTime, Utc};

#[derive(Queryable)]
pub struct Thread {
    pub id: i32,
    pub title: String,
    pub body: String,
    pub posted: DateTime<Utc>,
}

pub struct Post {
    pub id: i32,
    pub thread: i32,
    pub body: String,
    pub posted: DateTime<Utc>,
}