20 lines
443 B
Python
20 lines
443 B
Python
# Generated by Django 4.2.25 on 2025-12-18 01:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('business', '0012_sealapplication'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='sealapplication',
|
|
name='username',
|
|
field=models.CharField(default='', max_length=100),
|
|
preserve_default=False,
|
|
),
|
|
]
|