Skip to content

Commit

Permalink
fix: migrations.test_operations.OperationTests.test_alter_field_pk_fk…
Browse files Browse the repository at this point in the history
…_db_collation was add after django v4.1
  • Loading branch information
wd0517 committed Jul 21, 2023
1 parent 7513371 commit 0edf2f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_tidb/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,6 @@ def django_test_skips(self):
"migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth",
# Unsupported modifying the Reorg-Data types on the primary key
"migrations.test_operations.OperationTests.test_alter_field_pk_fk",
# Unsupported modifying collation of column from 'utf8mb4_general_ci' to 'utf8mb4_bin'
# when index is defined on it.
"migrations.test_operations.OperationTests.test_alter_field_pk_fk_db_collation",
# Unsupported add column and foreign key in single statement
# https://github.com/pingcap/tidb/issues/45474
"migrations.test_operations.OperationTests.test_remove_fk",
Expand Down Expand Up @@ -399,6 +396,9 @@ def django_test_skips(self):
"schema.tests.SchemaTests.test_func_unique_constraint_lookups",
"update.tests.AdvancedTests.test_update_ordered_by_inline_m2m_annotation",
"update.tests.AdvancedTests.test_update_ordered_by_m2m_annotation",
# Unsupported modifying collation of column from 'utf8mb4_general_ci' to 'utf8mb4_bin'
# when index is defined on it.
"migrations.test_operations.OperationTests.test_alter_field_pk_fk_db_collation",
}
}
)
Expand Down

0 comments on commit 0edf2f1

Please sign in to comment.