about summary refs log blame commit diff
path: root/src/schema.rs
blob: 50a55c786825833ad6682112cd02873e413111be (plain) (tree)
1
2
3
4
5
6
7
8


                   
                          

                              

                                






                         
                              

                                
                       


     




                                                              


                               
                           

                              


     
                                        




                                      
table! {
    posts (id) {
        id -> Int4,
        thread_id -> Int4,
        body -> Text,
        posted -> Timestamptz,
        author_name -> Varchar,
        author_email -> Varchar,
    }
}

table! {
    threads (id) {
        id -> Int4,
        title -> Varchar,
        posted -> Timestamptz,
        author_name -> Varchar,
        author_email -> Varchar,
        sticky -> Bool,
    }
}

// Note: Manually inserted as print-schema does not add views.
table! {
    thread_index (thread_id){
        thread_id -> Integer,
        title -> Text,
        thread_author -> Text,
        created -> Timestamptz,
        sticky -> Bool,
        post_id -> Integer,
        post_author -> Text,
        posted -> Timestamptz,
    }
}

joinable!(posts -> threads (thread_id));

allow_tables_to_appear_in_same_query!(
    posts,
    threads,
);