Daniel García
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
9 additions and
2 deletions
-
build.rs
-
src/db/models/attachment.rs
-
src/db/models/collection.rs
|
@ -17,6 +17,13 @@ fn main() { |
|
|
"You need to enable one DB backend. To build with previous defaults do: cargo build --features sqlite" |
|
|
"You need to enable one DB backend. To build with previous defaults do: cargo build --features sqlite" |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
// Use check-cfg to let cargo know which cfg's we define,
|
|
|
|
|
|
// and avoid warnings when they are used in the code.
|
|
|
|
|
|
println!("cargo::rustc-check-cfg=cfg(sqlite)"); |
|
|
|
|
|
println!("cargo::rustc-check-cfg=cfg(mysql)"); |
|
|
|
|
|
println!("cargo::rustc-check-cfg=cfg(postgresql)"); |
|
|
|
|
|
println!("cargo::rustc-check-cfg=cfg(query_logger)"); |
|
|
|
|
|
|
|
|
// Rerun when these paths are changed.
|
|
|
// Rerun when these paths are changed.
|
|
|
// Someone could have checked-out a tag or specific commit, but no other files changed.
|
|
|
// Someone could have checked-out a tag or specific commit, but no other files changed.
|
|
|
println!("cargo:rerun-if-changed=.git"); |
|
|
println!("cargo:rerun-if-changed=.git"); |
|
|
|
@ -95,7 +95,7 @@ impl Attachment { |
|
|
|
|
|
|
|
|
pub async fn delete(&self, conn: &mut DbConn) -> EmptyResult { |
|
|
pub async fn delete(&self, conn: &mut DbConn) -> EmptyResult { |
|
|
db_run! { conn: { |
|
|
db_run! { conn: { |
|
|
crate::util::retry( |
|
|
let _: () = crate::util::retry( |
|
|
|| diesel::delete(attachments::table.filter(attachments::id.eq(&self.id))).execute(conn), |
|
|
|| diesel::delete(attachments::table.filter(attachments::id.eq(&self.id))).execute(conn), |
|
|
10, |
|
|
10, |
|
|
) |
|
|
) |
|
|
|
@ -632,7 +632,7 @@ impl CollectionUser { |
|
|
|
|
|
|
|
|
db_run! { conn: { |
|
|
db_run! { conn: { |
|
|
for user in collectionusers { |
|
|
for user in collectionusers { |
|
|
diesel::delete(users_collections::table.filter( |
|
|
let _: () = diesel::delete(users_collections::table.filter( |
|
|
users_collections::user_uuid.eq(user_uuid) |
|
|
users_collections::user_uuid.eq(user_uuid) |
|
|
.and(users_collections::collection_uuid.eq(user.collection_uuid)) |
|
|
.and(users_collections::collection_uuid.eq(user.collection_uuid)) |
|
|
)) |
|
|
)) |
|
|