Skip to content

Commit

Permalink
feat: status에 refunded 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoo117 committed Oct 10, 2024
1 parent af7d2d1 commit 78e30ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions payments/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ class Order(models.Model):
("completed", "완료됨"),
("failed", "실패함"),
("cancelled", "취소됨"),
("refunded", "환불됨"),
]

user = models.ForeignKey(
Expand Down Expand Up @@ -254,6 +255,7 @@ class Payment(models.Model):
("completed", "완료됨"),
("failed", "실패함"),
("cancelled", "취소됨"),
("refunded", "환불됨"),
]

user = models.ForeignKey(
Expand Down

0 comments on commit 78e30ac

Please sign in to comment.