feat/vaults
Tomáš Mládek 2022-02-02 17:13:23 +01:00
parent 6aa804584d
commit f20928ddfe
No known key found for this signature in database
GPG Key ID: ED21612889E75EC5
3 changed files with 12 additions and 20 deletions

View File

@ -29,8 +29,4 @@ table! {
}
}
allow_tables_to_appear_in_same_query!(
data,
files,
meta,
);
allow_tables_to_appear_in_same_query!(data, files, meta,);

View File

@ -1,23 +1,19 @@
macro_rules! upend_insert_val {
($db_connection:expr, $entity:expr, $attribute:expr, $value:expr) => {{
$db_connection.insert_entry(
Entry {
entity: $entity.clone(),
attribute: String::from($attribute),
value: crate::database::entry::EntryValue::String(String::from($value)),
},
)
$db_connection.insert_entry(Entry {
entity: $entity.clone(),
attribute: String::from($attribute),
value: crate::database::entry::EntryValue::String(String::from($value)),
})
}};
}
macro_rules! upend_insert_addr {
($db_connection:expr, $entity:expr, $attribute:expr, $addr:expr) => {{
$db_connection.insert_entry(
Entry {
entity: $entity.clone(),
attribute: String::from($attribute),
value: crate::database::entry::EntryValue::Address($addr.clone()),
},
)
$db_connection.insert_entry(Entry {
entity: $entity.clone(),
attribute: String::from($attribute),
value: crate::database::entry::EntryValue::Address($addr.clone()),
})
}};
}

View File

@ -8,7 +8,7 @@ use diesel::{deserialize, sql_types};
use filebuffer::FileBuffer;
use log::trace;
use serde::{ser, Serialize, Serializer};
use std::path::{PathBuf, Path};
use std::path::{Path, PathBuf};
use tiny_keccak::{Hasher, KangarooTwelve};
#[derive(Debug, Clone, Eq, PartialEq, FromSqlRow, Hash)]