Updated migration numbering to avoid collisions.
- Legacy-Id: 13480
This commit is contained in:
parent
76628be3fd
commit
a92c2b4ad5
|
@ -7,8 +7,8 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('name', '0019_formallanguagename'),
|
||||
('doc', '0025_auto_20170307_0146'),
|
||||
('name', '0020_formallanguagename'),
|
||||
('doc', '0029_update_rfc_authors'),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -48,7 +48,7 @@ def fix_invalid_emails(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('doc', '0026_author_revamp_and_extra_attributes'),
|
||||
('doc', '0030_author_revamp_and_extra_attributes'),
|
||||
('person', '0014_auto_20160613_0751'),
|
||||
('group', '0009_auto_20150930_0758'),
|
||||
]
|
|
@ -13,6 +13,11 @@ from ietf.utils.test_data import make_test_data, make_downref_test_data
|
|||
from ietf.utils.test_utils import login_testing_unauthorized, unicontent
|
||||
|
||||
class Downref(TestCase):
|
||||
|
||||
def setUp(self):
|
||||
make_test_data()
|
||||
make_downref_test_data()
|
||||
|
||||
def test_downref_registry(self):
|
||||
url = urlreverse('ietf.doc.views_downref.downref_registry')
|
||||
|
||||
|
@ -103,7 +108,3 @@ class Downref(TestCase):
|
|||
self.assertTrue(RelatedDocument.objects.filter(source=draft, target=rfc, relationship_id='downref-approval'))
|
||||
self.assertEqual(draft.docevent_set.count(), draft_de_count_before + 1)
|
||||
self.assertEqual(rfc.document.docevent_set.count(), rfc_de_count_before + 1)
|
||||
|
||||
def setUp(self):
|
||||
make_test_data()
|
||||
make_downref_test_data()
|
||||
|
|
|
@ -7,7 +7,7 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('name', '0018_iab_programs'),
|
||||
('name', '0019_add_docrelationshipname_downref_approval'),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -15,7 +15,7 @@ def insert_initial_formal_language_names(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('name', '0019_formallanguagename'),
|
||||
('name', '0020_formallanguagename'),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -7,7 +7,7 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('name', '0020_add_formlang_names'),
|
||||
('name', '0021_add_formlang_names'),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -267,7 +267,7 @@ def insert_initial_country_continent_names(apps, schema_editor):
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('name', '0021_continentname_countryname'),
|
||||
('name', '0022_continentname_countryname'),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -7,7 +7,7 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('name', '0022_add_country_continent_names'),
|
||||
('name', '0023_add_country_continent_names'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
|
|
@ -7,7 +7,7 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('name', '0020_add_formlang_names'),
|
||||
('name', '0021_add_formlang_names'),
|
||||
('submit', '0018_fix_more_bad_submission_docevents'),
|
||||
]
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ tqdm>=3.7.0
|
|||
Trac>=1.0.10,<1.2
|
||||
Unidecode>=0.4.18
|
||||
#wsgiref>=0.1.2
|
||||
xml2rfc>=2.6.
|
||||
xml2rfc>=2.6.0
|
||||
xym>=0.1.2,!=0.3
|
||||
#zxcvbn-python>=4.4.14 # Not needed until we do back-end password entropy validation
|
||||
|
||||
|
|
Loading…
Reference in a new issue