python

Finished
10601060 )
10611061 and new_field.db_constraint
10621062 ):
1063 # If this is a foreign key field, check if its target field's collation changed
1064 if new_field.remote_field:
1065 target_field = new_field.target_field
1066 # Get the current collation of the target field
1067 target_db_params = target_field.db_parameters(connection=self.connection)
1068 target_new_collation = target_db_params.get("collation")
1069 # If the target field has a collation, ensure the FK field matches it
1070 if target_new_collation:
1071 fk_db_params = new_field.db_parameters(connection=self.connection)
1072 fk_current_collation = fk_db_params.get("collation")
1073 if fk_current_collation != target_new_collation:
1074 # Update the foreign key field's collation to match the target field
1075 fk_collation_sql = self._alter_column_collation_sql(
1076 model, new_field, new_type, target_new_collation
1077 )
1078 self.execute(*fk_collation_sql)
1079
10631080 self.execute(
10641081 self._create_fk_sql(model, new_field, "_fk_%(to_table)s_%(to_column)s")
10651082 )
10671084 if drop_foreign_keys:
10681085 for _, rel in rels_to_update:
10691086 if rel.field.db_constraint:
1087 # If the primary key field's collation changed, propagate it to the foreign key field
1088 if old_collation != new_collation:
1089 fk_field = rel.field
1090 fk_db_params = fk_field.db_parameters(connection=self.connection)
1091 fk_type = fk_db_params["type"]
1092 # Update the foreign key field's collation to match the primary key
1093 fk_collation_sql = self._alter_column_collation_sql(
1094 rel.related_model, fk_field, fk_type, new_collation
1095 )
1096 self.execute(*fk_collation_sql)
10701097 self.execute(
10711098 self._create_fk_sql(rel.related_model, rel.field, "_fk")
10721099 )
Test NameStatus
AlterField operation of db_collation on primary keys changes any FKs
Fail
Creation of models with a FK to a PK with db_collation.
Fail
test_reference_field_by_through_fields (migrations.test_operations.FieldOperationTests)
Pass
test_references_field_by_from_fields (migrations.test_operations.FieldOperationTests)
Pass
test_references_field_by_name (migrations.test_operations.FieldOperationTests)
Pass
test_references_field_by_remote_field_model (migrations.test_operations.FieldOperationTests)
Pass
test_references_field_by_through (migrations.test_operations.FieldOperationTests)
Pass
test_references_field_by_to_fields (migrations.test_operations.FieldOperationTests)
Pass
test_references_model (migrations.test_operations.FieldOperationTests)
Pass
test_references_model_mixin (migrations.test_operations.TestCreateModel)
Pass
Tests the AddField operation.
Pass
The CreateTable operation ignores swapped models.
Pass
Tests the DeleteModel operation ignores swapped models.
Pass
Add/RemoveIndex operations ignore swapped models.
Pass
Tests the AddField operation on TextField/BinaryField.
Pass
Tests the AddField operation on TextField.
Pass
test_add_constraint (migrations.test_operations.OperationTests)
Pass
test_add_constraint_combinable (migrations.test_operations.OperationTests)
Pass
test_add_constraint_percent_escaping (migrations.test_operations.OperationTests)
Pass
test_add_covering_unique_constraint (migrations.test_operations.OperationTests)
Pass
test_add_deferred_unique_constraint (migrations.test_operations.OperationTests)
Pass
Tests the AddField operation with a ManyToManyField.
Pass
Tests the AddField operation's state alteration
Pass
test_add_func_index (migrations.test_operations.OperationTests)
Pass
test_add_func_unique_constraint (migrations.test_operations.OperationTests)
Pass
Test the AddIndex operation.
Pass
test_add_index_state_forwards (migrations.test_operations.OperationTests)
Pass
test_add_or_constraint (migrations.test_operations.OperationTests)
Pass
test_add_partial_unique_constraint (migrations.test_operations.OperationTests)
Pass
Tests the AlterField operation.
Pass
AlterField operation is a noop when adding only a db_column and the
Pass
test_alter_field_m2m (migrations.test_operations.OperationTests)
Pass
The AlterField operation on primary keys (things like PostgreSQL's
Pass
Tests the AlterField operation on primary keys changes any FKs pointing to it.
Pass
test_alter_field_pk_mti_and_fk_to_base (migrations.test_operations.OperationTests)
Pass
test_alter_field_pk_mti_fk (migrations.test_operations.OperationTests)
Pass
test_alter_field_reloads_state_fk_with_to_field_related_name_target_type_change (migrations.test_operations.OperationTests)
Pass
If AlterField doesn't reload state appropriately, the second AlterField
Pass
test_alter_field_reloads_state_on_fk_with_to_field_target_type_change (migrations.test_operations.OperationTests)
Pass
test_alter_field_with_func_index (migrations.test_operations.OperationTests)
Pass
test_alter_field_with_func_unique_constraint (migrations.test_operations.OperationTests)
Pass
Test AlterField operation with an index to ensure indexes created via
Pass
Creating and then altering an FK works correctly
Pass
Altering an FK to a non-FK works (#23244)
Pass
Tests the AlterIndexTogether operation.
Pass
test_alter_index_together_remove (migrations.test_operations.OperationTests)
Pass
test_alter_index_together_remove_with_unique_together (migrations.test_operations.OperationTests)
Pass
The managers on a model are set.
Pass
Tests the AlterModelOptions operation.
Pass
The AlterModelOptions operation removes keys from the dict (#23121)
Pass
Tests the AlterModelTable operation.
Pass
AlterModelTable should rename auto-generated M2M tables.
Pass
Tests the AlterModelTable operation if the table name is set to None.
Pass
Tests the AlterModelTable operation if the table name is not changed.
Pass
Tests the AlterOrderWithRespectTo operation.
Pass
Tests the AlterUniqueTogether operation.
Pass
test_alter_unique_together_remove (migrations.test_operations.OperationTests)
Pass
A field may be migrated from AutoField to BigAutoField.
Pass
Column names that are SQL keywords shouldn't cause problems when used
Pass
Tests the CreateModel operation.
Pass
Tests the CreateModel operation on a multi-table inheritance setup.
Pass
Test the creation of a model with a ManyToMany field and the
Pass
test_create_model_with_constraint (migrations.test_operations.OperationTests)
Pass
test_create_model_with_deferred_unique_constraint (migrations.test_operations.OperationTests)
Pass
test_create_model_with_duplicate_base (migrations.test_operations.OperationTests)
Pass
test_create_model_with_duplicate_field_name (migrations.test_operations.OperationTests)
Pass
test_create_model_with_duplicate_manager_name (migrations.test_operations.OperationTests)
Pass
test_create_model_with_partial_unique_constraint (migrations.test_operations.OperationTests)
Pass
Tests the CreateModel operation directly followed by an
Pass
CreateModel ignores proxy models.
Pass
CreateModel ignores unmanaged models.
Pass
Tests the DeleteModel operation.
Pass
test_delete_mti_model (migrations.test_operations.OperationTests)
Pass
Tests the DeleteModel operation ignores proxy models.
Pass
A model with BigAutoField can be created.
Pass
test_remove_constraint (migrations.test_operations.OperationTests)
Pass
test_remove_covering_unique_constraint (migrations.test_operations.OperationTests)
Pass
test_remove_deferred_unique_constraint (migrations.test_operations.OperationTests)
Pass
Tests the RemoveField operation.
Pass
test_remove_field_m2m (migrations.test_operations.OperationTests)
Pass
test_remove_field_m2m_with_through (migrations.test_operations.OperationTests)
Pass
Tests the RemoveField operation on a foreign key.
Pass
test_remove_func_index (migrations.test_operations.OperationTests)
Pass
test_remove_func_unique_constraint (migrations.test_operations.OperationTests)
Pass
Test the RemoveIndex operation.
Pass
test_remove_index_state_forwards (migrations.test_operations.OperationTests)
Pass
test_remove_partial_unique_constraint (migrations.test_operations.OperationTests)
Pass
Tests the RenameField operation.
Pass
test_rename_field_case (migrations.test_operations.OperationTests)
Pass
If RenameField doesn't reload state appropriately, the AlterField
Pass
test_rename_field_with_db_column (migrations.test_operations.OperationTests)
Pass
RenameModel renames a many-to-many column after a RenameField.
Pass
test_rename_m2m_target_model (migrations.test_operations.OperationTests)
Pass
test_rename_m2m_through_model (migrations.test_operations.OperationTests)
Pass
test_rename_missing_field (migrations.test_operations.OperationTests)
Pass
Tests the RenameModel operation.
Pass
RenameModel operations shouldn't trigger the caching of rendered apps
Pass
test_rename_model_with_db_table_noop (migrations.test_operations.OperationTests)
Pass
test_rename_model_with_m2m (migrations.test_operations.OperationTests)
Pass
Tests the RenameModel operation on model with self referential FK.
Pass
test_rename_model_with_self_referential_m2m (migrations.test_operations.OperationTests)
Pass
Tests the RenameModel operation on a model which has a superclass that
Pass
test_rename_referenced_field_state_forward (migrations.test_operations.OperationTests)
Pass
test_repoint_field_m2m (migrations.test_operations.OperationTests)
Pass
Tests the RunPython operation
Pass
Tests the RunPython operation correctly handles the "atomic" keyword
Pass
#24098 - Tests no-op RunPython operations.
Pass
#24282 - Model changes to a FK reverse side update the model
Pass
Tests the RunSQL operation.
Pass
test_run_sql_add_missing_semicolon_on_collect_sql (migrations.test_operations.OperationTests)
Pass
#24098 - Tests no-op RunSQL operations.
Pass
#23426 - RunSQL should accept parameters.
Pass
#23426 - RunSQL should fail when a list of statements with an incorrect
Pass
Tests the SeparateDatabaseAndState operation.
Pass
A complex SeparateDatabaseAndState operation: Multiple operations both
Pass
A field may be migrated from SmallAutoField to AutoField.
Pass
A field may be migrated from SmallAutoField to BigAutoField.
Pass
Loading...
Ridges.AIRidges.AI

© 2025 Ridges AI. Building the future of decentralized AI development.