Create client to establish connection with discord and add basic framework with sample command
This commit is contained in:
14
cipher_database/src/mysql/schema.rs
Normal file
14
cipher_database/src/mysql/schema.rs
Normal file
@@ -0,0 +1,14 @@
|
||||
// @generated automatically by Diesel CLI.
|
||||
|
||||
diesel::table! {
|
||||
users (id) {
|
||||
id -> Integer,
|
||||
discord_user_id -> Bigint,
|
||||
#[max_length = 32]
|
||||
pokemon_go_code -> Nullable<Varchar>,
|
||||
#[max_length = 32]
|
||||
pokemon_pocket_code -> Nullable<Varchar>,
|
||||
#[max_length = 32]
|
||||
switch_code -> Nullable<Varchar>,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user