it all works!

This commit is contained in:
Jacob Lifshay 2024-04-08 23:38:50 -07:00
parent d6ebd3a4a6
commit 40e8445848
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c
13 changed files with 471 additions and 47 deletions

View file

@ -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,
);