19 lines
445 B
Python
19 lines
445 B
Python
# Generated by Django 3.2.4 on 2021-08-01 08:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('physics', '0009_alter_exam_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='json_creation_id',
|
|
field=models.IntegerField(default=1, help_text='auto incrementing field when json recreated'),
|
|
),
|
|
]
|