summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/schema.py
AgeCommit message (Expand)Author
2015-01-14Fixed #22603 -- Reorganized classes in django.db.backends.Tim Graham
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2014-12-15Fixed #23987 -- Made SQLite SchemaEditor always use effective_default().Andriy Sokolovskiy
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-12-01Fixed #23880 -- Added missing index_together handling for SQLiteMarkus Holtermann
2014-10-23Fixed #23702 -- Fixed adding an explicit id field on SQLite.Tim Graham
2014-10-09Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL column in...Markus Holtermann
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-08-10Made sqlite's remove_field behave like the base backend.Florian Apolloner
2014-07-23Fixed #23030 -- Properly handled geometry columns metadata during migrationsClaude Paroz
2014-07-21Fixed #23014: Renaming not atomic with unique togetherAndrew Godwin
2014-06-16Fixed #22844: Duplicate SQL for SQLite FKsAndrew Godwin
2014-05-20Fixed #22432: SQLite M2M repointing now works. Thanks to xelnor.Andrew Godwin
2014-05-20Fixed #22649: Beefed up quote_valueAndrew Godwin
2014-05-17Fixed #22626 -- Allow BinaryField defaults with SQlite.Raphaƫl Barrois
2014-05-08Fixed #22476: Couldn't alter attributes on M2Ms with through= setAndrew Godwin
2014-05-07Fixed #22581: Pass default values for schema through get_db_prep_save()Andrew Godwin
2014-04-18Fixed #22397 -- Issues removing M2M field with explicit through modelAndrew Gorcester
2014-04-18Revert "Fixed #22397 -- Issues removing M2M field with explicit through model."Simon Charette
2014-04-17Fixed #22397 -- Issues removing M2M field with explicit through model.Andrew Gorcester
2014-03-31Fixed #22359 -- Changing M2M field to blank=True failed on sqlite.Loic Bistuer
2014-03-24Fixed #22293 -- Avoided renaming many-to-many tables to themselves.Daniel Hahler
2014-03-18Fix any sqlite field migration deleting all implicit m2m tablesChris Beaven
2014-03-01Fixed #22168 -- Fixed migrations failing on sqlite when column names are SQL ...Baptiste Mispelon
2014-02-09Fixed #21844: Move quote_parameter off of Operations and renameAndrew Godwin
2014-02-09Fixed #21917: Overly cautious SQLite3 backend for null fields + defaultsAndrew Godwin
2014-01-25Fixed #21783: More SQLite default fun with nulls.Andrew Godwin
2014-01-19Fixed #21783: Use defaults for adding NOT NULL on sqliteAndrew Godwin
2013-12-28Added generation of SQLite FK DDL in initial migrations.Ramiro Morales
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-17Deborgified the app cache.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Moved django.db.models.loading to django.apps.cache.Aymeric Augustin
2013-09-06Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-05-29Start adding operations that work and tests for themAndrew Godwin
2013-05-09Split out a BaseAppCache, make AppCache borg again, add _meta.app_cacheAndrew Godwin
2012-09-24Fix nullability changing codeAndrew Godwin
2012-09-22Remove AppCache state handling, replace with swappable cachesAndrew Godwin
2012-09-18Stylistic fixes: triple-quoted docstrings, more commentsAndrew Godwin
2012-09-07Add check constraint support - needed a few Field changesAndrew Godwin
2012-09-07Add M2M repointingAndrew Godwin
2012-09-07Added SQLite backend which passes all current testsAndrew Godwin
2012-08-18Add a SQlite backend. One test passes!Andrew Godwin