summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/introspection.py
Commit message (Expand)AuthorAgeFilesLines
* Made inspectdb used Cursor.description.display_size for CharFields' max_length.Mariusz Felisiak2022-12-081-1/+1
* Fixed #32234 -- Made inspectdb inform about composite primary keys.Anv3sh2022-06-011-9/+5
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-1/+8
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-95/+146
* Refs #33288 -- Removed SQLite's DatabaseIntrospection._get_foreign_key_constr...Simon Charette2021-11-151-17/+12
* Fixed #33288 -- Made SQLite introspection use information schema for relations.Simon Charette2021-11-151-52/+6
* Refs #33288 -- Made SQLite introspection raise DatabaseError on nonexistent t...Simon Charette2021-11-151-0/+3
* Removed DatabaseIntrospection.get_key_columns().Mariusz Felisiak2021-11-101-29/+0
* Fixed DatabaseIntrospection.get_relations() docstring.Tim Graham2021-11-101-1/+1
* Fixed #32672 -- Fixed introspection of primary key constraints on SQLite.Anv3sh2021-10-261-17/+4
* Fixed #32453 -- Added introspection of unique constraint field ordering on SQ...Hannes Ljungberg2021-02-171-1/+1
* Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg2021-01-131-3/+11
* Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick2020-09-211-1/+26
* Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne2020-05-111-3/+3
* Fixed #12990, Refs #27694 -- Added JSONField model field.sage2020-05-081-3/+21
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-1/+1
* Fixed #30987 -- Added models.PositiveBigIntegerField.Caio Ariede2019-11-191-0/+1
* Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani2019-10-291-1/+2
* Fixed #30661 -- Added models.SmallAutoField.Nick Pope2019-08-021-3/+3
* Fixed #30183 -- Added introspection of inline SQLite constraints.Paveł Tyślacki2019-03-131-48/+131
* Refs #30183 -- Moved SQLite table constraint parsing to a method.Paveł Tyślacki2019-03-011-42/+48
* Unified nonexistent foreign key introspection value for SQLite.Paveł Tyślacki2019-03-011-4/+4
* Fixed #30115 -- Fixed SQLite introspection crash with a varchar primary key.Nick Pope2019-01-221-8/+3
* Inlined DatabaseIntrospection._table_info() for SQLite.Nick Pope2019-01-221-22/+5
* Refs #23748 -- Added AutoField introspection for SQLite.Nick Pope2019-01-091-1/+13
* Renamed Sqlite and Sqlite3 references to SQLite.Nick Pope2018-12-221-1/+1
* Fixed #29641 -- Added support for unique constraints in Meta.constraints.Simon Charette2018-11-131-0/+9
* Refs #29641 -- Refactored database schema constraint creation.Simon Charette2018-11-131-15/+35
* Fixed #29517 -- Added support for SQLite column check constraints on positive...Tim Graham2018-06-251-0/+26
* Refs #29350 -- Fixed 'invalid escape sequence' warning in SQLite introspection.Tim Graham2018-05-081-1/+1
* Fixed #29350 -- Fix get_primary_key_column() method in sqlite3 backendZackary Troop2018-04-281-2/+2
* Fixed #29004 -- Added inspectdb --include-views option.bquinn2018-01-271-9/+19
* Fixed #28884 -- Fixed crash on SQLite when renaming a field in a model refere...Simon Charette2017-12-221-13/+17
* Fixed #28584 -- Dropped support for SQLite < 3.7.15.Tim Graham2017-10-031-15/+0
* Refs #27098 -- Removed DatabaseIntrospection.get_indexes() per deprecation ti...Tim Graham2017-09-221-25/+0
* Refs #27090 -- Added real database sequence introspection.Mariusz Felisiak2017-09-131-0/+4
* Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz2017-07-111-0/+13
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-10/+10
* Fixed #27135 -- Made index introspection return Index.suffix.Tim Graham2017-02-151-1/+2
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #24245 -- Added introspection for database defaults on Oracle.Mariusz Felisiak2016-11-301-2/+0
* Fixed #27372 -- Fixed introspection of SQLite foreign keys with spaces in DDL.Saulius Žemaitaitis2016-11-061-1/+1
* Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham2016-09-171-3/+3
* Fixed #27098 -- Deprecated DatabaseIntrospection.get_indexesClaude Paroz2016-09-121-0/+6
* Fixed #27097 -- Added index type introspection to built-in db backends.Akshesh2016-09-021-1/+3
* Fixed #27096 -- Fixed primary key introspection for sqlite3 backendClaude Paroz2016-08-201-1/+1
* Refs #20888 -- Added index order introspection.Akshesh2016-08-121-0/+12
* Refs #17785 -- Made docstring for sqlite3's get_relations() consistent with o...Hynek Cernoch2015-09-181-3/+2
* Fixed #24637 -- Fixed database introspection with SQLite 3.8.9.peterfarrell2015-04-141-1/+4
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+0