We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9460311 + 60fc307 commit 6372f01Copy full SHA for 6372f01
database/src/pool/postgres.rs
@@ -1344,6 +1344,13 @@ where
1344
.execute("delete from artifact where name = $1", &[&info.name])
1345
.await
1346
.unwrap();
1347
+ self.conn()
1348
+ .execute(
1349
+ "delete from pull_request_build where bors_sha = $1",
1350
+ &[&info.name],
1351
+ )
1352
+ .await
1353
+ .unwrap();
1354
}
1355
1356
database/src/pool/sqlite.rs
@@ -1216,6 +1216,12 @@ impl Connection for SqliteConnection {
1216
self.raw_ref()
1217
.execute("delete from artifact where name = ?1", [info.name])
1218
1219
+ self.raw_ref()
1220
1221
+ "delete from pull_request_build where bors_sha = ?1",
1222
+ [info.name],
1223
1224
1225
1226
1227
0 commit comments