27 lines
348 B
Rust

//!
//!
table! {
///
member_bank_accounts(id) {
///
id -> Uuid,
///
member_id -> Uuid,
///
bank_id -> Uuid,
///
name -> Text,
///
account_number -> Text,
///
exchange_password -> Text,
///
memo -> Nullable<Text>,
///
created_at -> BigInt,
///
updated_at -> BigInt,
}
}