Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FE에서 API로 전송할 결제 성공 API 작성 #91

Merged
merged 3 commits into from
May 25, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
모델 변경 반영: FE에서 API로 전송할 결제 성공 API 작성
  • Loading branch information
golony6449 committed May 25, 2023
commit f14903e763169bb105aa6f2b9d2d2c1ee8b39b47
18 changes: 18 additions & 0 deletions payment/migrations/0003_paymenthistory_is_webhook.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1.5 on 2023-05-25 13:47

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("payment", "0002_rename_user_id_payment_user_payment_status_and_more"),
]

operations = [
migrations.AddField(
model_name="paymenthistory",
name="is_webhook",
field=models.BooleanField(default=False),
),
]