correlate 0.3.0

correlate is a standalone server that listens for Stripe webhook events and sends notification emails about successful orders.
// @generated automatically by Diesel CLI.

diesel::table! {
    stripe_customers (id) {
        id -> Bigint,
        user_id -> Text,
        email -> Text,
        created_at -> Timestamp,
        updated_at -> Nullable<Timestamp>,
        deleted_at -> Nullable<Timestamp>,
    }
}

diesel::table! {
    users (id) {
        id -> Integer,
        #[max_length = 60]
        name -> Varchar,
        #[max_length = 60]
        password -> Varchar,
    }
}

diesel::allow_tables_to_appear_in_same_query!(stripe_customers, users,);