19 lines
386 B
Python
19 lines
386 B
Python
|
# Generated by Django 3.1.1 on 2020-10-07 07:32
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('input', '0009_project_pid'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='project',
|
||
|
name='pid',
|
||
|
field=models.IntegerField(blank=True, null=True),
|
||
|
),
|
||
|
]
|