1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
table! {
    icons (owner, repo, path) {
        owner -> Text,
        repo -> Text,
        path -> Text,
    }
}

table! {
    repos (owner, repo, path) {
        owner -> Text,
        repo -> Text,
        path -> Text,
        icon_path -> Nullable<Text>,
    }
}

allow_tables_to_appear_in_same_query!(icons, repos,);