Skip to content

Commit 72487b9

Browse files
committed
add migration for API as default channel
1 parent aed6dd2 commit 72487b9

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 5.1.7 on 2025-07-23 21:25
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('ifc_validation_models', '0015_validationrequest_channel'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='validationrequest',
15+
name='channel',
16+
field=models.CharField(choices=[('WEBUI', 'WebUi'), ('API', 'Api')], db_index=True, default='API', help_text='What channel was used to create this Validation Request.', max_length=10),
17+
),
18+
]

0 commit comments

Comments
 (0)