it all works!
This commit is contained in:
parent
d6ebd3a4a6
commit
40e8445848
13 changed files with 471 additions and 47 deletions
|
|
@ -6,3 +6,16 @@ diesel::table! {
|
|||
date -> Timestamp,
|
||||
}
|
||||
}
|
||||
|
||||
diesel::table! {
|
||||
keys (id) {
|
||||
id -> Integer,
|
||||
#[sql_name = "email-unsubscribe-url"]
|
||||
email_unsubscribe_url -> Binary,
|
||||
}
|
||||
}
|
||||
|
||||
diesel::allow_tables_to_appear_in_same_query!(
|
||||
accounts,
|
||||
keys,
|
||||
);
|
||||
|
|
|
|||
Reference in a new issue