33 lines
435 B
Rust
33 lines
435 B
Rust
//!
|
|
//!
|
|
|
|
table! {
|
|
///
|
|
api_kgon_vendors(id) {
|
|
///
|
|
id -> BigInt,
|
|
///
|
|
company_id -> BigInt,
|
|
///
|
|
vendor_id -> BigInt,
|
|
///
|
|
key -> Text,
|
|
///
|
|
name -> Text,
|
|
///
|
|
category -> Text,
|
|
///
|
|
max_bet_casino -> BigInt,
|
|
///
|
|
max_bet_slot -> BigInt,
|
|
///
|
|
is_enable -> Bool,
|
|
///
|
|
bet_count -> BigInt,
|
|
///
|
|
created_at -> BigInt,
|
|
///
|
|
updated_at -> BigInt,
|
|
}
|
|
}
|