schema.rs
607 Bytes
table! {
markdown_diffs (markdown_id, diff_id) {
markdown_id -> Integer,
diff_id -> Integer,
diff -> Binary,
date_created -> Text,
}
}
table! {
markdowns (id) {
id -> Integer,
name -> Text,
content -> Text,
number_of_versions -> Integer,
date_created -> Text,
date_updated -> Text,
}
}
table! {
users (id) {
id -> Integer,
name -> Text,
address -> Text,
date_created -> Text,
}
}
allow_tables_to_appear_in_same_query!(
markdown_diffs,
markdowns,
users,
);