blob: 2fe08ba9f6d1066043cb49e4f4625e6f9c5fe26a [file] [log] [blame]
table! {
/// Representation of the `self` table.
///
/// (Automatically generated by Diesel.)
#[sql_name = "self"]
self_ (id) {
/// The `id` column of the `self` table.
///
/// Its SQL type is `Integer`.
///
/// (Automatically generated by Diesel.)
id -> Integer,
}
}
table! {
/// Representation of the `user-has::complex>>>role` table.
///
/// (Automatically generated by Diesel.)
#[sql_name = "user-has::complex>>>role"]
user_has_complex_role (id) {
/// The `user` column of the `user-has::complex>>>role` table.
///
/// Its SQL type is `Integer`.
///
/// (Automatically generated by Diesel.)
user -> Integer,
/// The `role` column of the `user-has::complex>>>role` table.
///
/// Its SQL type is `Integer`.
///
/// (Automatically generated by Diesel.)
role -> Integer,
/// The `id` column of the `user-has::complex>>>role` table.
///
/// Its SQL type is `Integer`.
///
/// (Automatically generated by Diesel.)
id -> Integer,
/// The `created at` column of the `user-has::complex>>>role` table.
///
/// Its SQL type is `Timestamp`.
///
/// (Automatically generated by Diesel.)
#[sql_name = "created at"]
created_at -> Timestamp,
/// The `expiry date` column of the `user-has::complex>>>role` table.
///
/// Its SQL type is `Nullable<Timestamp>`.
///
/// (Automatically generated by Diesel.)
#[sql_name = "expiry date"]
expiry_date -> Nullable<Timestamp>,
}
}
joinable!(user_has_complex_role -> self_ (user));
allow_tables_to_appear_in_same_query!(
self_,
user_has_complex_role,
);