summaryrefslogtreecommitdiff
path: root/tests/schema/models.py
AgeCommit message (Collapse)Author
2014-08-09[1.7.x] Fixed #23264: Schema backends honour db_constraintAndrew Godwin
2014-07-21[1.7.x] Fixed #23009: Shorten FK identifiers in add_field and make consistentAndrew Godwin
2014-05-08[1.7.x] Fixed #22476: Couldn't alter attributes on M2Ms with through= setAndrew Godwin
2014-03-08Fixed #22183: Through M2Ms now correctly handledAndrew Godwin
2013-12-27Amend test table name so it doesn't clash.Ramiro Morales
Refs #21692 and 3efd1b8b939.
2013-12-27Fixed #21692 -- Quote table name when creating it.Ramiro Morales
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
Also renamed app_cache to apps and "app cache" to "app registry". Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.
2013-12-17Deborgified the app cache.Aymeric Augustin
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.
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Moved django.db.models.loading to django.apps.cache.Aymeric Augustin
This commit doesn't contain any code changes; it's purely a refactoring.
2013-11-24Fixed #21497 -- Forced conversion to bytes for very long index namesJoel Bohman
2013-09-03Updated syncdb -> migrate in tests.Tim Graham
2013-08-19Add more stringent M2M tests and fix the bug they exposedAndrew Godwin
2013-08-11Support index_together during model creationAndrew Godwin
2013-05-09Split out a BaseAppCache, make AppCache borg again, add _meta.app_cacheAndrew Godwin
2013-04-18Merge branch 'master' into schema-alterationAndrew Godwin
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