Skip to content

Commit f14903e

Browse files
committed
모델 변경 반영: FE에서 API로 전송할 결제 성공 API 작성
1 parent a49c6e3 commit f14903e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.1.5 on 2023-05-25 13:47
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("payment", "0002_rename_user_id_payment_user_payment_status_and_more"),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name="paymenthistory",
15+
name="is_webhook",
16+
field=models.BooleanField(default=False),
17+
),
18+
]

0 commit comments

Comments
 (0)