19 lines
422 B
Python
19 lines
422 B
Python
|
# Generated by Django 4.0.4 on 2022-05-25 18:08
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('App', '0006_alter_standards_paragraph'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='standards',
|
||
|
name='standardPath',
|
||
|
field=models.CharField(blank=True, max_length=200, null=True),
|
||
|
),
|
||
|
]
|