summaryrefslogtreecommitdiff
path: root/django/db/backends/schema.py
AgeCommit message (Expand)Author
2014-12-30[1.7.x] Fixed #23581 -- Prevented extraneous DROP DEFAULT statements.Tim Graham
2014-12-27[1.7.x] Fixed #24051 -- Made schema infrastructure honor tablespacesClaude Paroz
2014-12-18[1.7.x] Fixed #24015 -- Factorized create_index_sql expressionClaude Paroz
2014-12-04[1.7.x] Fixed #23954 -- Added special text/varchar PostgreSQL indexes in migr...Claude Paroz
2014-12-04[1.7.x] Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField.Tim Graham
2014-12-02[1.7.x] Fixed #23909 -- Prevented crash when collecting SQL for RunSQLClaude Paroz
2014-10-31[1.7.x] Fixed #23738 -- Allowed migrating from NULL to NOT NULL with the same...Markus Holtermann
2014-10-09[1.7.x] Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL c...Markus Holtermann
2014-09-23[1.7.x] Fixed #23503 -- Fixed renaming of model with self-referential m2m field.Sergey Fedoseev
2014-09-23[1.7.x] Fixed #23065 -- Quoted constraint names in SQL generated by migrations.Sergey Fedoseev
2014-09-23[1.7.x] Factored create_fk_sql, create_unique_sql, and delete_constraint_sql.Sergey Fedoseev
2014-08-09[1.7.x] Fixed #23264: Schema backends honour db_constraintAndrew Godwin
2014-08-07[1.7.x] Moved index dropping after FK dropping to please MySQL and fix testAndrew Godwin
2014-08-04[1.7.x] Fixed #23091: CreateModel and AddField were clashing with deferred SQLAndrew Godwin
2014-07-25[1.7.x] Fixed #23085: Better error message for PostGIS 1.5/bad custom fieldsAndrew Godwin
2014-07-21[1.7.x] Fixed #23009: Shorten FK identifiers in add_field and make consistentAndrew Godwin
2014-07-21[1.7.x] Fixed #22975: Don't call rename SQL if not neededAndrew Godwin
2014-07-21[1.7.x] Fixed #23043: alter_field drops defaults tooAndrew Godwin
2014-06-19[1.7.x] Added feature for implied null (needed for Firebird backend)Tim Graham
2014-06-16[1.7.x] Fixed #22851: BinaryView wasn't getting a binary defaultAndrew Godwin
2014-05-21[1.7.x] Fixed #22432: SQLite M2M repointing now works. Thanks to xelnor.Andrew Godwin
2014-05-21[1.7.x] Fixed #22424 -- Fixed handling of default values for TextField/Binary...Loic Bistuer
2014-05-08[1.7.x] Fixed #22476: Couldn't alter attributes on M2Ms with through= setAndrew Godwin
2014-05-07[1.7.x] Fixed #22581: Pass default values for schema through get_db_prep_save()Andrew Godwin
2014-04-25[1.7.x] Fixed #22498 -- constraint name was not quoted in FK creation SQLShai Berger
2014-04-23[1.7.x] Used the same instance of atomic for entry and exit.Aymeric Augustin
2014-04-23[1.7.x] Wrapped migrations in a transaction only on DBs with transactional DDL.Aymeric Augustin
2014-04-16[1.7.x] Fixed #22460 -- Explicity remove constraints when dropping a related ...Motiejus Jakštys
2014-03-24[1.7.x] Fixed #22293 -- Avoided renaming many-to-many tables to themselves.Daniel Hahler
2014-03-08Fixed #22183: Through M2Ms now correctly handledAndrew Godwin
2014-03-08Merge pull request #2315 from bendavis78/issues/22073Andrew Godwin
2014-03-06Revert "Fixed #22183: Don't make a table for M2Ms with through="Andrew Godwin
2014-03-06Fixed #22183: Don't make a table for M2Ms with through=Andrew Godwin
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-02-17Fixed #22073 - Ensure CreateTable operation handles backwards migration corre...Ben Davis
2014-02-09Fixed #21844: Move quote_parameter off of Operations and renameAndrew Godwin
2014-02-09Fixed #21842: Remove redundant DatabaseFeatures.max_index_name_lengthAndrew Godwin
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2013-12-28Added generation of SQLite FK DDL in initial migrations.Ramiro Morales
2013-12-28Implemented #10164 for new schema migration code.Ramiro Morales
2013-12-27Fixed #21692 -- Quote table name when creating it.Ramiro Morales
2013-12-11Fix altering of SERIAL columns and InnoDB being picky about FK changesAndrew Godwin
2013-12-11Change FKs when what they point to changesAndrew Godwin
2013-12-11Fix sqlmigrate's output for parametersAndrew Godwin
2013-11-27Add gis deconstruct() method (this does not make schema work)Andrew Godwin
2013-11-24Fixed #21497 -- Forced conversion to bytes for very long index namesJoel Bohman
2013-09-16Fixed #17627 -- Renamed util.py files to utils.pyTim Graham
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-06Fixed a number of flake8 errors -- particularly around unused imports and loc...Alex Gaynor
2013-09-07Fixed regression introduced by efd1e60, 'map' returns an iterator on PY3.Loic Bistuer