schema.rs 945 Bytes
table! {
    images (id) {
        id -> Integer,
        upload_uuid -> Nullable<Tinyblob>,
        uuid -> Nullable<Tinyblob>,
        size -> Integer,
        dim_x -> Nullable<Integer>,
        dim_y -> Nullable<Integer>,
        mime_type -> Varchar,
        date_created -> Text,
        date_updated -> Text,
    }
}

table! {
    markdowns (id) {
        id -> Integer,
        name -> Varchar,
        content -> Text,
        number_of_versions -> Integer,
        date_created -> Text,
        date_updated -> Text,
    }
}

table! {
    markdown_diffs (markdown_id, diff_id) {
        markdown_id -> Integer,
        diff_id -> Integer,
        diff -> Blob,
        date_created -> Text,
    }
}

table! {
    users (id) {
        id -> Integer,
        name -> Text,
        address -> Text,
        date_created -> Text,
    }
}

allow_tables_to_appear_in_same_query!(
    images,
    markdowns,
    markdown_diffs,
    users,
);