surfpool_db/
schema.rs

1diesel::table! {
2    collections (id) {
3        id -> Text,
4        created_at -> Date,
5        updated_at -> Date,
6        name -> Text,
7        entries_table -> Text,
8        schema -> Text,
9    }
10}