ft_sdk/
schema.rs

1diesel::table! {
2    use diesel::sql_types::*;
3
4    fastn_session (id) {
5        id -> Text,
6        uid -> Nullable<Int8>,
7        data -> Text,
8        updated_at -> Timestamptz,
9        created_at -> Timestamptz,
10    }
11}