24 lines
522 B
Python
24 lines
522 B
Python
# Generated by Django 3.0.4 on 2020-03-19 05:55
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('examtest', '0006_auto_20200318_1634'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='testrule',
|
|
old_name='passscore',
|
|
new_name='pass_score',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='testrule',
|
|
old_name='totalscore',
|
|
new_name='total_score',
|
|
),
|
|
]
|