1
2
3
4
5
6
7
8
9
10
11
table! {
    frames (id) {
        id -> Text,
        start -> Timestamp,
        end -> Nullable<Timestamp>,
        last_update -> Timestamp,
        project -> Text,
        tags -> Text,
        deleted -> Bool,
    }
}