1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-10 13:03:55 +00:00

Remove debug impl from database structs

This is only implemented for the database specific structs, which is not what we want
This commit is contained in:
Daniel García 2021-03-13 22:04:04 +01:00
parent 431462d839
commit ce62e898c3
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
10 changed files with 15 additions and 15 deletions

View file

@ -1,7 +1,7 @@
use super::{Cipher, User};
db_object! {
#[derive(Debug, Identifiable, Queryable, Insertable, Associations)]
#[derive(Identifiable, Queryable, Insertable, Associations)]
#[table_name = "favorites"]
#[belongs_to(User, foreign_key = "user_uuid")]
#[belongs_to(Cipher, foreign_key = "cipher_uuid")]