Refs #29808 -- Fixed MigrateTests.test_migrate_fake_initial_case_insensitive() crash on Oracle.

This commit is contained in:
Mariusz Felisiak 2019-11-15 21:05:42 +01:00 committed by GitHub
parent 530dd193f2
commit 4527d5db0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ class Migration(migrations.Migration):
('field', models.CharField(max_length=20)),
],
options={
'db_table': 'migrations_mIxEd_cAsE_iNiTiAl_mOdEl',
'db_table': 'migrations_mIxEd_cAsE_mOdEl',
},
),
migrations.AddField(

View File

@ -17,7 +17,7 @@ class Migration(migrations.Migration):
),
],
options={
'db_table': 'migrations_MiXeD_CaSe_InItIaL_MoDel',
'db_table': 'migrations_MiXeD_CaSe_MoDel',
},
),
]