fang 0.11.0

Background job processing library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// @generated automatically by Diesel CLI.

diesel::table! {
    fang_tasks (id) {
        id -> Binary,
        metadata -> Text,
        error_message -> Nullable<Text>,
        state -> Text,
        task_type -> Text,
        uniq_hash -> Nullable<Text>,
        retries -> Integer,
        scheduled_at -> Integer,
        created_at -> Integer,
        updated_at -> Integer,
    }
}