summaryrefslogtreecommitdiff
path: root/django/db/backends/mysql/schema.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #470 -- Added support for database defaults on fields.Ian Foote2023-05-121-5/+24
* Fixed #34553 -- Fixed improper % escaping of literal in constraints.Simon Charette2023-05-101-2/+0
* Refs #34320 -- Stopped recreating check constraints when renaming fields.Mariusz Felisiak2023-03-021-0/+13
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+0
* Fixed #34304 -- Made MySQL's SchemaEditor.remove_constraint() don't create fo...sag᠎e2023-01-311-1/+4
* Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul2022-12-281-1/+12
* Fixed #34219 -- Preserved Char/TextField.db_collation when altering column type.Mariusz Felisiak2022-12-221-4/+7
* Fixed #31335 -- Fixed removing composed composed Meta constraints/indexes on ...Sergey Fursov2022-09-131-7/+48
* Refs #31335 -- Added SchemaEditor._create_missing_fk_index() on MySQL.Sergey Fursov2022-09-121-6/+17
* Refs #27064 -- Added RenameIndex migration operation.David Wobrock2022-05-121-0/+1
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-25/+40
* Updated various links to HTTPS and new locations.Mariusz Felisiak2021-12-021-1/+1
* Fixed #33129 -- Dropped support for MariaDB 10.2.Mariusz Felisiak2021-09-221-3/+2
* Optimized DatabaseSchemaEditor._field_should_be_indexed() on MySQL.Matjaz Gregoric2021-08-201-3/+4
* Fixed #32503 -- Fixed altering BLOB/TEXT field to non-nullable with default o...Yuekui Li2021-05-211-0/+7
* Fixed #32425 -- Fixed adding nullable field with default on MySQL.Jordan Bae2021-02-091-0/+1
* Refs #26167 -- Made DatabaseSchemaEditor._create_index_sql()'s fields argumen...Hannes Ljungberg2020-12-231-1/+3
* Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick2020-09-211-0/+1
* Refs #31411 -- Used RENAME COLUMN on MySQL 8.0.4+.Mariusz Felisiak2020-04-091-1/+6
* Fixed #31411 -- Used RENAME COLUMN on MariaDB 10.5.2+.Hasan Ramezani2020-04-021-2/+6
* Fixed #30750 -- Added support for check constraints on MySQL 8.0.16+.Mariusz Felisiak2019-09-051-4/+9
* Fixed #30712 -- Allowed BLOB/TEXT defaults on MySQL 8.0.13+.Nasir Hussain2019-08-221-2/+14
* Fixed #27676 -- Allowed BLOB/TEXT defaults on MariaDB 10.2.1+.Adam Johnson2019-08-161-1/+10
* Fixed #30593 -- Added support for check constraints on MariaDB 10.2+.Hasan Ramezani2019-07-191-0/+6
* Fixed #30380 -- Handled bytes in MySQL backend for PyMySQL support.Mariusz Felisiak2019-04-191-1/+2
* Fixed #30108 -- Allowed adding foreign key constraints in the same statement ...Dan Tao2019-01-291-1/+4
* Fixed #29547 -- Added support for partial indexes.Mads Jensen2018-10-291-0/+2
* Fixed #29103 -- Removed bad 'b'-prefix added by MySQL's SchemaEditor.quote_va...Claude Paroz2018-03-171-3/+5
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-3/+1
* Fixed #28275 -- Added more hooks to SchemaEditor._alter_field().Florian Apolloner2017-06-061-2/+2
* Fixed #27859 -- Ignored db_index for TextField/BinaryField on Oracle and MySQL.Mariusz Felisiak2017-05-231-13/+7
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-5/+5
* Fixed #27441 -- Improved SQL for 'DROP COLUMN' on MySQLAdam Chainz2016-11-051-0/+4
* Fixed #26966 -- Made MySQL backend skip defaults for JSON columnsAdam Chainz2016-08-011-2/+3
* Fixed #26171 -- Made MySQL create an index on ForeignKeys with db_contraint=F...Aaron Elliot Ross2016-06-281-8/+11
* Fixed #26593 -- Leveraged deferrable_sql() in SchemaEditorMarkus Holtermann2016-05-071-4/+0
* Removed unused attributes of MySQL SchemaEditor.Tim Graham2016-01-221-3/+0
* Fixed #25393 -- Fixed MySQL crash when adding text/blob field with unhashable...Ville Skyttä2015-09-141-1/+2
* Fixed #24972 -- Fixed removing unique_together indexes on MySQL.Adam Brenecki2015-06-151-4/+2
* Fixed #24846 -- Added support to MySQL SchemaEditor for all blob/text data typesAdam Chainz2015-05-301-3/+10
* Fixed #24817 -- Prevented loss of null info in MySQL field renaming.Andriy Sokolovskiy2015-05-281-3/+14
* Fixed #24757 -- Recreated MySQL index when needed during combined index removalClaude Paroz2015-05-151-0/+18
* Fixed #24595 -- Prevented loss of null info in MySQL field alterationClaude Paroz2015-04-171-0/+8
* Removed duplicate attribute in MySQL DatabaseSchemaEditor.Andriy Sokolovskiy2015-03-301-2/+0
* Fixed #22603 -- Reorganized classes in django.db.backends.Tim Graham2015-01-141-1/+1
* Fixed #14180 -- Prevented unneeded index creation on MySQL-InnoDBClaude Paroz2014-12-271-0/+12
* Limited lines to 119 characters in django/Tim Graham2014-09-051-1/+4
* Fixed unused import.Loic Bistuer2014-05-211-1/+0
* Fixed #22649: Beefed up quote_valueAndrew Godwin2014-05-201-8/+3
* Fixed #22424 -- Fixed handling of default values for TextField/BinaryField on...Loic Bistuer2014-05-181-1/+26