feat: 프로젝트 기본 구조 구축
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 5.2.7 on 2025-10-04 13:02
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('strategies', '0002_remove_strategyversion_code_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='strategyexecution',
|
||||
name='callback_response',
|
||||
field=models.JSONField(blank=True, help_text='콜백 응답 데이터', null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='strategyexecution',
|
||||
name='callback_sent',
|
||||
field=models.BooleanField(default=False, help_text='콜백 전송 완료 여부'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='strategyexecution',
|
||||
name='callback_sent_at',
|
||||
field=models.DateTimeField(blank=True, help_text='콜백 전송 일시', null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='strategyexecution',
|
||||
name='callback_url',
|
||||
field=models.URLField(blank=True, help_text='전략 실행 완료 후 결과를 전송할 콜백 URL', max_length=500, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user