Replaced total_result* fields by a total_result property
This commit is contained in:
parent
b46c377919
commit
5ef320455e
4 changed files with 39 additions and 8 deletions
19
candidats/migrations/0009_remove_total_fields.py
Normal file
19
candidats/migrations/0009_remove_total_fields.py
Normal 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',
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue