summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/schema.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #470 -- Added support for database defaults on fields.Ian Foote2023-05-121-4/+20
* Moved SQLite DatabaseSchemaEditor.add_field()'s comment to the correct line.Mariusz Felisiak2023-05-091-2/+1
* Refs #27236 -- Made more cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak2023-05-051-2/+3
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+1
* Fixed #28987 -- Fixed altering ManyToManyField when changing to self-referent...DevilsAutumn2022-11-171-18/+31
* Fixed #34138 -- Avoided table rebuild when adding inline m2m fields on SQLite.Mariusz Felisiak2022-11-041-1/+4
* Fixed #33899 -- Fixed migration crash when removing indexed field on SQLite 3...Fiza Ashraf2022-08-081-2/+3
* Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock2022-05-021-1/+5
* Fixed #33670 -- Fixed altering primary key on SQLite.Mariusz Felisiak2022-04-291-1/+6
* Refs #32502 -- Avoided table rebuild when removing fields on SQLite 3.35.5+.Mariusz Felisiak2022-02-111-0/+10
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-3/+6
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-111/+196
* Fixed #33408 -- Fixed adding nullable unique fields on SQLite.Mariusz Felisiak2022-01-041-4/+9
* Refs #32502 -- Avoided table rebuild when adding fields with no default on SQ...Mariusz Felisiak2021-12-101-8/+9
* Refs #32502 -- Added SchemaEditor.prepare_default() on SQLite.Mariusz Felisiak2021-12-101-3/+6
* Refs #33288 -- Removed SQLite's DatabaseIntrospection._get_foreign_key_constr...Simon Charette2021-11-151-3/+2
* Fixed #32962 -- Consolidated string concatenations in BaseDatabaseSchemaEdito...Chris Jerdonek2021-07-271-1/+1
* Fixed #32780 -- Made Add/RemoveConstraint operations a noop for covering/defe...Hannes Ljungberg2021-05-251-2/+8
* Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg2021-02-231-2/+6
* Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick2020-09-211-0/+3
* Fixed #31825 -- Made RenameField operation a noop for fields with db_column.Iuri de Silvio2020-08-131-0/+2
* Refs #30591 -- Adjusted table rebuild for non-pk relationship on SQLite.Simon Charette2020-04-211-10/+12
* Fixed #31064 -- Recreated auto-created many-to-many tables on primary key dat...Simon Charette2020-04-211-1/+10
* Stopped rebuilding referenced tables multiple times on SQLite alterations.Simon Charette2020-04-201-3/+9
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-1/+1
* Fixed #30664 -- Fixed migrations crash when altering table on SQLite or alter...Ngalim Siregar2019-08-011-1/+2
* Fixed #30062 -- Added support for unique conditional constraints.Paveł Tyślacki2019-01-121-2/+9
* Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki2019-01-011-1/+1
* Refs #30033 -- Checked constraints before committing SQLite schema changes.Simon Charette2018-12-221-1/+1
* Renamed SQLite3 references to to SQLite.Simon Charette2018-12-221-1/+1
* Refs #29182 -- Stopped relying on legacy alter table semantic on SQLite 3.26+.Simon Charette2018-12-171-5/+5
* Fixed #30033 -- Conformed to the recommended table alterations procedure on S...Simon Charette2018-12-171-46/+60
* Fixed #30023 -- Prevented SQLite schema alterations while foreign key checks ...Simon Charette2018-12-151-2/+9
* Fixed #29182 -- Fixed schema table alteration on SQLite 3.26+.Simon Charette2018-12-071-0/+2
* Refs #29641 -- Refactored database schema constraint creation.Simon Charette2018-11-131-1/+1
* Fixed #29868 -- Retained database constraints on SQLite table rebuilds.Simon Charette2018-10-291-11/+3
* Fixed #29763 -- Added support for column renaming on SQLite.Hampus Dunström2018-10-271-0/+8
* Fixed #11964 -- Added support for database check constraints.Ian Foote2018-07-101-1/+18
* Fixed #28884 -- Fixed crash on SQLite when renaming a field in a model refere...Simon Charette2017-12-221-4/+23
* Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette2017-12-011-2/+58
* Fixed #28854 -- Replaced type(True) with bool in sqlite's SchemaEditor.Дилян Палаузов2017-11-281-1/+1
* Used bytes.hex() and bytes.fromhex() to simplify.Sergey Fedoseev2017-11-231-8/+2
* Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz2017-07-111-12/+11
* Refs #25530 -- Deleted deferred SQL references on delete operation.Simon Charette2017-06-211-5/+4
* Refs #25530 -- Tracked references of deferred SQL statements.Simon Charette2017-06-211-3/+7
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-1/+1
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-9/+6
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-3/+3
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-7/+4
* Fixed #26808 -- Added Meta.indexes for class-based indexes.Akshesh2016-08-051-0/+8