Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/schema
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #23009: Shorten FK identifiers in add_field and ↵Andrew Godwin2014-07-212-6/+35
| | | | make consistent
* Fixed several flake8 errorsAlex Gaynor2014-06-181-1/+0
|
* Fix test breakage on MySQLAndrew Godwin2014-06-171-1/+3
|
* Fixed #22851: BinaryView wasn't getting a binary defaultAndrew Godwin2014-06-171-1/+21
|
* Renamed DatabaseFeature.supports_check_constraints to ↵Tim Graham2014-06-171-1/+1
| | | | | | supports_column_check_constraints. Thanks maxi for the suggestion.
* Appeased flake8.Aymeric Augustin2014-05-081-1/+5
|
* Fixed #22476: Couldn't alter attributes on M2Ms with ↵Andrew Godwin2014-05-082-1/+41
| | | | through= set
* Fixed #22581: Pass default values for schema through ↵Andrew Godwin2014-05-071-0/+34
| | | | get_db_prep_save()
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-261-1/+1
|
* Fixed #22293 -- Avoided renaming many-to-many tables to ↵Daniel Hahler2014-03-241-0/+9
| | | | | | | themselves. Fixed this for both implementations of _alter_many_to_many, instead of in `alter_db_table` itself (more implementations).
* Fixed #22183: Through M2Ms now correctly handledAndrew Godwin2014-03-092-2/+31
|
* Ensure cursors are closed when no longer needed.Michael Manfre2014-02-021-41/+55
| | | | | | This commit touchs various parts of the code base and test framework. Any found usage of opening a cursor for the sake of initializing a connection has been replaced with 'ensure_connection()'.
* Fixed a failing schema assertion.Simon Charette2014-01-251-1/+7
| | | | BooleanFields are stored as TINYINT(1) on MySQL.
* Fixed #21783: More SQLite default fun with nulls.Andrew Godwin2014-01-251-1/+27
|
* Fixed two test failures under OracleShai Berger2014-01-201-1/+2
|
* Fixed #21783: Use defaults for adding NOT NULL on sqliteAndrew Godwin2014-01-191-1/+27
|
* Amend test table name so it doesn't clash.Ramiro Morales2013-12-281-1/+1
| | | | Refs #21692 and 3efd1b8b939.
* Fixed #21692 -- Quote table name when creating it.Ramiro Morales2013-12-272-2/+39
|
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-14/+14
| | | | | | Also renamed app_cache to apps and "app cache" to "app registry". Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
| | | | Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.
* Deborgified the app cache.Aymeric Augustin2013-12-171-2/+2
| | | | | | | | | | | | | Improved Andrew's hack to create temporary app caches to handle migrations. Now the main app cache has a "master" flag set to True (which is a non-default keyword argument, thus unlikely to be used by mistake). Other app cache instances have "master" set to False. The only sanctioned way to access the app cache is by importing django.core.apps.app_cache. If you were instanciating an app cache and relying on the Borg pattern, you'll have to refactor your code.
* Moved the new app cache inside core.Aymeric Augustin2013-12-171-1/+1
|
* Moved django.db.models.loading to django.apps.cache.Aymeric Augustin2013-12-171-1/+1
| | | | This commit doesn't contain any code changes; it's purely a refactoring.
* Fix altering of SERIAL columns and InnoDB being picky ↵Andrew Godwin2013-12-111-0/+1
| | | | about FK changes
* flake8 fixAlex Gaynor2013-11-251-1/+1
|
* Fixed test failure on OracleShai Berger2013-11-251-2/+5
| | | | Failure was introduced with test in [19e5cd77f0536b778b00788e34d8199835143855]
* Fixed #21497 -- Forced conversion to bytes for very long ↵Joel Bohman2013-11-242-2/+29
| | | | index names
* Fixed all E251 violationsAlex Gaynor2013-11-031-12/+12
|
* Removed unused local variables in tests.Tim Graham2013-10-191-1/+1
|
* Fixed #21151 -- Bad cleanup in schema M2M repoint testAndrew Godwin2013-09-241-0/+3
|
* Fixed #21029: Test for previously-commited ↵Andrew Godwin2013-09-061-0/+13
| | | | SchemaEditor.__exit__ bug.
* Updated syncdb -> migrate in tests.Tim Graham2013-09-031-1/+1
|
* Removed references to django.utils.unittest which is ↵Tim Graham2013-09-031-4/+5
| | | | PendingDeprecation
* Fixed #21005 -- Made schema tests language-independentClaude Paroz2013-08-301-15/+9
| | | | Thanks Simon Charette for the review.
* Fixed #20989 -- Removed useless explicit list ↵Simon Charette2013-08-301-2/+2
| | | | comprehensions.
* Fix some small errors in the testsAndrew Godwin2013-08-231-2/+2
|
* Add more stringent M2M tests and fix the bug they exposedAndrew Godwin2013-08-192-13/+21
|
* Oracle schema backend, passes most tests and is pretty ↵Andrew Godwin2013-08-131-2/+2
| | | | complete.
* Support index_together during model creationAndrew Godwin2013-08-112-1/+27
|
* Make get_constraints return columns in orderAndrew Godwin2013-07-021-9/+9
|
* Fix index_together testAndrew Godwin2013-07-021-1/+1
|
* Support for index_together in schema backendsAndrew Godwin2013-07-021-0/+51
|
* Fix M2M interaction with transactionsAndrew Godwin2013-07-021-4/+0
|
* First stab at some migration creation commandsAndrew Godwin2013-06-191-0/+2
|
* Start adding operations that work and tests for themAndrew Godwin2013-05-291-6/+6
|
* More conversion to a ContextManager schema_editorAndrew Godwin2013-05-181-286/+202
|
* Split out a BaseAppCache, make AppCache borg again, add ↵Andrew Godwin2013-05-092-23/+14
| | | | _meta.app_cache
* Fix schema editor interaction with new transactionsAndrew Godwin2013-04-191-1/+1
|
* Merge branch 'master' into schema-alterationAndrew Godwin2013-04-183-0/+757
Conflicts: django/db/backends/__init__.py django/db/backends/mysql/base.py django/db/backends/oracle/base.py django/db/backends/oracle/creation.py django/db/backends/postgresql_psycopg2/base.py django/db/backends/sqlite3/base.py django/db/models/fields/related.py