Skip to content

Commit 19ec458

Browse files
committed
Added migrations for the model changes done for the Django 1.8 upgrade.
- Legacy-Id: 12478
1 parent 53f3430 commit 19ec458

8 files changed

Lines changed: 213 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('doc', '0016_auto_20160927_0713'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='docevent',
16+
name='type',
17+
field=models.CharField(max_length=50, choices=[(b'new_revision', b'Added new revision'), (b'new_submission', b'Uploaded new revision'), (b'changed_document', b'Changed document metadata'), (b'added_comment', b'Added comment'), (b'added_message', b'Added message'), (b'deleted', b'Deleted document'), (b'changed_state', b'Changed state'), (b'changed_stream', b'Changed document stream'), (b'expired_document', b'Expired document'), (b'extended_expiry', b'Extended expiry of document'), (b'requested_resurrect', b'Requested resurrect'), (b'completed_resurrect', b'Completed resurrect'), (b'changed_consensus', b'Changed consensus'), (b'published_rfc', b'Published RFC'), (b'added_suggested_replaces', b'Added suggested replacement relationships'), (b'reviewed_suggested_replaces', b'Reviewed suggested replacement relationships'), (b'changed_group', b'Changed group'), (b'changed_protocol_writeup', b'Changed protocol writeup'), (b'changed_charter_milestone', b'Changed charter milestone'), (b'initial_review', b'Set initial review time'), (b'changed_review_announcement', b'Changed WG Review text'), (b'changed_action_announcement', b'Changed WG Action text'), (b'started_iesg_process', b'Started IESG process on document'), (b'created_ballot', b'Created ballot'), (b'closed_ballot', b'Closed ballot'), (b'sent_ballot_announcement', b'Sent ballot announcement'), (b'changed_ballot_position', b'Changed ballot position'), (b'changed_ballot_approval_text', b'Changed ballot approval text'), (b'changed_ballot_writeup_text', b'Changed ballot writeup text'), (b'changed_rfc_editor_note_text', b'Changed RFC Editor Note text'), (b'changed_last_call_text', b'Changed last call text'), (b'requested_last_call', b'Requested last call'), (b'sent_last_call', b'Sent last call'), (b'scheduled_for_telechat', b'Scheduled for telechat'), (b'iesg_approved', b'IESG approved document (no problem)'), (b'iesg_disapproved', b'IESG disapproved document (do not publish)'), (b'approved_in_minute', b'Approved in minute'), (b'iana_review', b'IANA review comment'), (b'rfc_in_iana_registry', b'RFC is in IANA registry'), (b'rfc_editor_received_announcement', b'Announcement was received by RFC Editor'), (b'requested_publication', b'Publication at RFC Editor requested'), (b'sync_from_rfc_editor', b'Received updated information from RFC Editor'), (b'requested_review', b'Requested review'), (b'assigned_review_request', b'Assigned review request'), (b'closed_review_request', b'Closed review request')]),
18+
),
19+
migrations.AlterField(
20+
model_name='dochistory',
21+
name='tags',
22+
field=models.ManyToManyField(to='name.DocTagName', blank=True),
23+
),
24+
migrations.AlterField(
25+
model_name='document',
26+
name='tags',
27+
field=models.ManyToManyField(to='name.DocTagName', blank=True),
28+
),
29+
]
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('ipr', '0008_auto_20160720_0218'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='genericiprdisclosure',
16+
name='holder_contact_email',
17+
field=models.EmailField(max_length=254),
18+
),
19+
migrations.AlterField(
20+
model_name='holderiprdisclosure',
21+
name='holder_contact_email',
22+
field=models.EmailField(max_length=254),
23+
),
24+
migrations.AlterField(
25+
model_name='holderiprdisclosure',
26+
name='ietfer_contact_email',
27+
field=models.EmailField(max_length=254, blank=True),
28+
),
29+
migrations.AlterField(
30+
model_name='iprdisclosurebase',
31+
name='submitter_email',
32+
field=models.EmailField(max_length=254, blank=True),
33+
),
34+
migrations.AlterField(
35+
model_name='nondocspecificiprdisclosure',
36+
name='holder_contact_email',
37+
field=models.EmailField(max_length=254),
38+
),
39+
migrations.AlterField(
40+
model_name='thirdpartyiprdisclosure',
41+
name='ietfer_contact_email',
42+
field=models.EmailField(max_length=254),
43+
),
44+
]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('liaisons', '0011_auto_20161013_1034'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='liaisonstatement',
16+
name='tags',
17+
field=models.ManyToManyField(to='name.LiaisonStatementTagName', blank=True),
18+
),
19+
migrations.AlterField(
20+
model_name='liaisonstatementgroupcontacts',
21+
name='group',
22+
field=models.ForeignKey(null=True, to='group.Group', unique=True),
23+
),
24+
]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('mailtrigger', '0007_add_interim_announce'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='mailtrigger',
16+
name='cc',
17+
field=models.ManyToManyField(related_name='used_in_cc', to='mailtrigger.Recipient', blank=True),
18+
),
19+
migrations.AlterField(
20+
model_name='mailtrigger',
21+
name='to',
22+
field=models.ManyToManyField(related_name='used_in_to', to='mailtrigger.Recipient', blank=True),
23+
),
24+
]
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('meeting', '0040_fix_mext_meeting_materials'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='timeslot',
16+
name='sessions',
17+
field=models.ManyToManyField(help_text='Scheduled session, if any.', related_name='slots', through='meeting.SchedTimeSessAssignment', to='meeting.Session', blank=True),
18+
),
19+
]
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('nomcom', '0010_nominee_person'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='feedback',
16+
name='author',
17+
field=models.EmailField(max_length=254, verbose_name=b'Author', blank=True),
18+
),
19+
migrations.AlterField(
20+
model_name='feedback',
21+
name='nominees',
22+
field=models.ManyToManyField(to='nomcom.Nominee', blank=True),
23+
),
24+
migrations.AlterField(
25+
model_name='feedback',
26+
name='positions',
27+
field=models.ManyToManyField(to='nomcom.Position', blank=True),
28+
),
29+
migrations.AlterField(
30+
model_name='nomination',
31+
name='nominator_email',
32+
field=models.EmailField(max_length=254, verbose_name=b'Nominator Email', blank=True),
33+
),
34+
]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
import ietf.utils.validators
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('review', '0005_auto_20161130_0628'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='reviewersettings',
17+
name='filter_re',
18+
field=models.CharField(blank=True, help_text=b'Draft names matching this regular expression should not be assigned', max_length=255, verbose_name=b'Filter regexp', validators=[ietf.utils.validators.RegexStringValidator()]),
19+
),
20+
]
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('submit', '0016_fix_duplicate_upload_docevents'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='submissioncheck',
16+
name='time',
17+
field=models.DateTimeField(auto_now=True),
18+
),
19+
]

0 commit comments

Comments
 (0)