Replaced total_result* fields by a total_result property

This commit is contained in:
Claude Paroz 2018-02-14 18:41:57 +01:00
parent b46c377919
commit 5ef320455e
4 changed files with 39 additions and 8 deletions

View file

@ -0,0 +1,19 @@
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('candidats', '0008_add_examination_teacher'),
]
operations = [
migrations.RemoveField(
model_name='candidate',
name='total_result_mark',
),
migrations.RemoveField(
model_name='candidate',
name='total_result_points',
),
]