Skip to content

Commit

Permalink
feat: add dispute request id to the field
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyRo1 committed Aug 19, 2024
1 parent 1990c70 commit 6201c74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ pub struct OORequest {
pub asserter: String,
pub disputer: Option<String>,
pub disputed: Option<bool>,
pub dispute_id: Option<String>,
pub callback_recipient: String,
pub escalation_manager: String,
pub caller: String,
Expand Down
2 changes: 2 additions & 0 deletions src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ diesel::table! {
disputer -> Nullable<Varchar>,
disputed -> Nullable<Bool>,
#[max_length = 255]
dispute_id -> Nullable<Varchar>,
#[max_length = 255]
callback_recipient -> Varchar,
#[max_length = 255]
escalation_manager -> Varchar,
Expand Down

0 comments on commit 6201c74

Please sign in to comment.