Loading django/db/backends/mysql/base.py +1 −1 Original line number Diff line number Diff line Loading @@ -366,7 +366,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): def check_constraints(self, table_names=None): """ Checks each table name in table-names for rows with invalid foreign key references. This method is Checks each table name in `table_names` for rows with invalid foreign key references. This method is intended to be used in conjunction with `disable_constraint_checking()` and `enable_constraint_checking()`, to determine if rows with invalid references were entered while constraint checks were off. Loading django/db/backends/sqlite3/base.py +1 −1 Original line number Diff line number Diff line Loading @@ -208,7 +208,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): def check_constraints(self, table_names=None): """ Checks each table name in table-names for rows with invalid foreign key references. This method is Checks each table name in `table_names` for rows with invalid foreign key references. This method is intended to be used in conjunction with `disable_constraint_checking()` and `enable_constraint_checking()`, to determine if rows with invalid references were entered while constraint checks were off. Loading tests/regressiontests/fixtures_regress/fixtures/forward_ref.json 0 → 100644 +17 −0 Original line number Diff line number Diff line [ { "pk": 1, "model": "fixtures_regress.book", "fields": { "name": "Cryptonomicon", "author": 4 } }, { "pk": "4", "model": "fixtures_regress.person", "fields": { "name": "Neal Stephenson" } } ] No newline at end of file tests/regressiontests/fixtures_regress/fixtures/forward_ref_bad_data.json 0 → 100644 +17 −0 Original line number Diff line number Diff line [ { "pk": 1, "model": "fixtures_regress.book", "fields": { "name": "Cryptonomicon", "author": 3 } }, { "pk": "4", "model": "fixtures_regress.person", "fields": { "name": "Neal Stephenson" } } ] No newline at end of file Loading
django/db/backends/mysql/base.py +1 −1 Original line number Diff line number Diff line Loading @@ -366,7 +366,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): def check_constraints(self, table_names=None): """ Checks each table name in table-names for rows with invalid foreign key references. This method is Checks each table name in `table_names` for rows with invalid foreign key references. This method is intended to be used in conjunction with `disable_constraint_checking()` and `enable_constraint_checking()`, to determine if rows with invalid references were entered while constraint checks were off. Loading
django/db/backends/sqlite3/base.py +1 −1 Original line number Diff line number Diff line Loading @@ -208,7 +208,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): def check_constraints(self, table_names=None): """ Checks each table name in table-names for rows with invalid foreign key references. This method is Checks each table name in `table_names` for rows with invalid foreign key references. This method is intended to be used in conjunction with `disable_constraint_checking()` and `enable_constraint_checking()`, to determine if rows with invalid references were entered while constraint checks were off. Loading
tests/regressiontests/fixtures_regress/fixtures/forward_ref.json 0 → 100644 +17 −0 Original line number Diff line number Diff line [ { "pk": 1, "model": "fixtures_regress.book", "fields": { "name": "Cryptonomicon", "author": 4 } }, { "pk": "4", "model": "fixtures_regress.person", "fields": { "name": "Neal Stephenson" } } ] No newline at end of file
tests/regressiontests/fixtures_regress/fixtures/forward_ref_bad_data.json 0 → 100644 +17 −0 Original line number Diff line number Diff line [ { "pk": 1, "model": "fixtures_regress.book", "fields": { "name": "Cryptonomicon", "author": 3 } }, { "pk": "4", "model": "fixtures_regress.person", "fields": { "name": "Neal Stephenson" } } ] No newline at end of file