19 lines
422 B
Python
19 lines
422 B
Python
|
# Generated by Django 4.1.3 on 2024-04-09 07:30
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('fwd_api', '0188_subscriptionrequest_subsidiary'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='subscriptionrequest',
|
||
|
name='accuracy',
|
||
|
field=models.FloatField(default=None, null=True),
|
||
|
),
|
||
|
]
|