summaryrefslogtreecommitdiff
path: root/django/db/backends/schema.py
AgeCommit message (Expand)Author
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
2013-09-06Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin
2013-09-06Fix SchemaEditor.__exit__ to handle exceptions correctlyAndrew Godwin
2013-08-23Python 3 compat fix for callable()Andrew Godwin
2013-08-23Fix location of tablespace clauses in schema backend column SQLAndrew Godwin
2013-08-23Fix Oracle's default handling and schema-prepared-statement issueAndrew Godwin
2013-08-13Oracle schema backend, passes most tests and is pretty complete.Andrew Godwin
2013-08-11Remove keep_default from add_fieldAndrew Godwin
2013-08-11Fix tablespace commandAndrew Godwin
2013-08-11Support index_together during model creationAndrew Godwin
2013-08-11Stop being overcautious about Field.relAndrew Godwin
2013-08-09Remove pointless fetch_results paramAndrew Godwin