summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/schema.py
AgeCommit message (Expand)Author
2023-02-01[4.2.x] Refs #33476 -- Applied Black's 2023 stable style.David Smith
2022-11-17Fixed #28987 -- Fixed altering ManyToManyField when changing to self-referent...DevilsAutumn
2022-11-04Fixed #34138 -- Avoided table rebuild when adding inline m2m fields on SQLite.Mariusz Felisiak
2022-08-08Fixed #33899 -- Fixed migration crash when removing indexed field on SQLite 3...Fiza Ashraf
2022-05-02Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock
2022-04-29Fixed #33670 -- Fixed altering primary key on SQLite.Mariusz Felisiak
2022-02-11Refs #32502 -- Avoided table rebuild when removing fields on SQLite 3.35.5+.Mariusz Felisiak
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-04Fixed #33408 -- Fixed adding nullable unique fields on SQLite.Mariusz Felisiak
2021-12-10Refs #32502 -- Avoided table rebuild when adding fields with no default on SQ...Mariusz Felisiak
2021-12-10Refs #32502 -- Added SchemaEditor.prepare_default() on SQLite.Mariusz Felisiak
2021-11-15Refs #33288 -- Removed SQLite's DatabaseIntrospection._get_foreign_key_constr...Simon Charette
2021-07-27Fixed #32962 -- Consolidated string concatenations in BaseDatabaseSchemaEdito...Chris Jerdonek
2021-05-25Fixed #32780 -- Made Add/RemoveConstraint operations a noop for covering/defe...Hannes Ljungberg
2021-02-23Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg
2020-09-21Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick
2020-08-13Fixed #31825 -- Made RenameField operation a noop for fields with db_column.Iuri de Silvio
2020-04-21Refs #30591 -- Adjusted table rebuild for non-pk relationship on SQLite.Simon Charette
2020-04-21Fixed #31064 -- Recreated auto-created many-to-many tables on primary key dat...Simon Charette
2020-04-20Stopped rebuilding referenced tables multiple times on SQLite alterations.Simon Charette
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope
2019-08-01Fixed #30664 -- Fixed migrations crash when altering table on SQLite or alter...Ngalim Siregar
2019-01-12Fixed #30062 -- Added support for unique conditional constraints.Paveł Tyślacki
2019-01-01Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki
2018-12-22Refs #30033 -- Checked constraints before committing SQLite schema changes.Simon Charette
2018-12-22Renamed SQLite3 references to to SQLite.Simon Charette
2018-12-17Refs #29182 -- Stopped relying on legacy alter table semantic on SQLite 3.26+.Simon Charette
2018-12-17Fixed #30033 -- Conformed to the recommended table alterations procedure on S...Simon Charette
2018-12-15Fixed #30023 -- Prevented SQLite schema alterations while foreign key checks ...Simon Charette
2018-12-07Fixed #29182 -- Fixed schema table alteration on SQLite 3.26+.Simon Charette
2018-11-13Refs #29641 -- Refactored database schema constraint creation.Simon Charette
2018-10-29Fixed #29868 -- Retained database constraints on SQLite table rebuilds.Simon Charette
2018-10-27Fixed #29763 -- Added support for column renaming on SQLite.Hampus Dunström
2018-07-10Fixed #11964 -- Added support for database check constraints.Ian Foote
2017-12-22Fixed #28884 -- Fixed crash on SQLite when renaming a field in a model refere...Simon Charette
2017-12-01Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette
2017-11-28Fixed #28854 -- Replaced type(True) with bool in sqlite's SchemaEditor.Дилян Палаузов
2017-11-23Used bytes.hex() and bytes.fromhex() to simplify.Sergey Fedoseev
2017-07-11Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz
2017-06-21Refs #25530 -- Deleted deferred SQL references on delete operation.Simon Charette
2017-06-21Refs #25530 -- Tracked references of deferred SQL statements.Simon Charette
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2016-08-05Fixed #26808 -- Added Meta.indexes for class-based indexes.Akshesh
2016-07-18Removed unnecessary looping in sqlite3 SchemaEditor.akki
2016-07-06Fixed #26841 -- Avoid remake tables for altering togethers in sqlite3 (#6888)akki
2016-05-17Fixed #26613 -- Made sqlite3 optional in SchemaEditor.quote_value().Philip Liberato