Renamed CorpContact.title to civility
This matches the same attributes for Student and Teacher models.
This commit is contained in:
parent
68e644b6f6
commit
764031a3ee
7 changed files with 37 additions and 25 deletions
16
stages/migrations/0013_renamed_title_to_civility.py
Normal file
16
stages/migrations/0013_renamed_title_to_civility.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0012_added_date_fields_for_student'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='corpcontact',
|
||||
old_name='title',
|
||||
new_name='civility',
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue