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,);