surfpool-db 1.1.1

Surfpool is where developers start their Solana journey.
Documentation
diesel::table! {
    collections (id) {
        id -> Text,
        created_at -> Date,
        updated_at -> Date,
        table_name -> Text,
        workspace_slug -> Text,
        source -> Text,
        latest_slot_successfully_processed -> Int4,
        worker_id -> Text,
    }
}

diesel::table! {
    workers (id) {
        id -> Text,
        created_at -> Date,
        updated_at -> Date,
        cursor -> Nullable<Text>,
        token -> Text,
        last_slot_processed -> Int4,
    }
}