Skip to content

Commit

Permalink
🐛 Fix breaking changes in sqlx
Browse files Browse the repository at this point in the history
issue is open at launchbadge/sqlx#1672
  • Loading branch information
t-edzuka committed Dec 6, 2024
1 parent a6df250 commit 6028cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/idempotency/persistence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use uuid::Uuid;
use crate::idempotency::IdempotencyKey;

#[derive(Debug, sqlx::Type)]
#[sqlx(type_name = "header_pair")]
#[sqlx(type_name = "header_pair", no_pg_array)]
struct HeaderPairRecord {
name: String,
value: Vec<u8>,
Expand Down

0 comments on commit 6028cf2

Please sign in to comment.