flash-font 0.1.0

Cache fonts in sqlite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use diesel::prelude::*;

table! {
    font_files (id) {
        id -> Integer,
        path -> Text,
    }
}
table! {
    font_family_names (id) {
        id -> Integer,
        file_id -> Integer,
        name -> Text,
    }
}

joinable!(font_family_names -> font_files (file_id));
allow_tables_to_appear_in_same_query!(font_files, font_family_names);