surfpool_db/
schema.rs

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