index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
backends
/
sqlite3
/
introspection.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Made inspectdb used Cursor.description.display_size for CharFields' max_length.
Mariusz Felisiak
2022-12-08
1
-1
/
+1
*
Fixed #32234 -- Made inspectdb inform about composite primary keys.
Anv3sh
2022-06-01
1
-9
/
+5
*
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
1
-1
/
+8
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-95
/
+146
*
Refs #33288 -- Removed SQLite's DatabaseIntrospection._get_foreign_key_constr...
Simon Charette
2021-11-15
1
-17
/
+12
*
Fixed #33288 -- Made SQLite introspection use information schema for relations.
Simon Charette
2021-11-15
1
-52
/
+6
*
Refs #33288 -- Made SQLite introspection raise DatabaseError on nonexistent t...
Simon Charette
2021-11-15
1
-0
/
+3
*
Removed DatabaseIntrospection.get_key_columns().
Mariusz Felisiak
2021-11-10
1
-29
/
+0
*
Fixed DatabaseIntrospection.get_relations() docstring.
Tim Graham
2021-11-10
1
-1
/
+1
*
Fixed #32672 -- Fixed introspection of primary key constraints on SQLite.
Anv3sh
2021-10-26
1
-17
/
+4
*
Fixed #32453 -- Added introspection of unique constraint field ordering on SQ...
Hannes Ljungberg
2021-02-17
1
-1
/
+1
*
Fixed #26167 -- Added support for functional indexes.
Hannes Ljungberg
2021-01-13
1
-3
/
+11
*
Fixed #31777 -- Added support for database collations to Char/TextFields.
Tom Carrick
2020-09-21
1
-1
/
+26
*
Refs #30116 -- Simplified regex match group access with Match.__getitem__().
Jon Dufresne
2020-05-11
1
-3
/
+3
*
Fixed #12990, Refs #27694 -- Added JSONField model field.
sage
2020-05-08
1
-3
/
+21
*
Simplified imports from django.db and django.contrib.gis.db.
Nick Pope
2020-02-04
1
-1
/
+1
*
Fixed #30987 -- Added models.PositiveBigIntegerField.
Caio Ariede
2019-11-19
1
-0
/
+1
*
Fixed #30899 -- Lazily compiled import time regular expressions.
Hasan Ramezani
2019-10-29
1
-1
/
+2
*
Fixed #30661 -- Added models.SmallAutoField.
Nick Pope
2019-08-02
1
-3
/
+3
*
Fixed #30183 -- Added introspection of inline SQLite constraints.
Paveł Tyślacki
2019-03-13
1
-48
/
+131
*
Refs #30183 -- Moved SQLite table constraint parsing to a method.
Paveł Tyślacki
2019-03-01
1
-42
/
+48
*
Unified nonexistent foreign key introspection value for SQLite.
Paveł Tyślacki
2019-03-01
1
-4
/
+4
*
Fixed #30115 -- Fixed SQLite introspection crash with a varchar primary key.
Nick Pope
2019-01-22
1
-8
/
+3
*
Inlined DatabaseIntrospection._table_info() for SQLite.
Nick Pope
2019-01-22
1
-22
/
+5
*
Refs #23748 -- Added AutoField introspection for SQLite.
Nick Pope
2019-01-09
1
-1
/
+13
*
Renamed Sqlite and Sqlite3 references to SQLite.
Nick Pope
2018-12-22
1
-1
/
+1
*
Fixed #29641 -- Added support for unique constraints in Meta.constraints.
Simon Charette
2018-11-13
1
-0
/
+9
*
Refs #29641 -- Refactored database schema constraint creation.
Simon Charette
2018-11-13
1
-15
/
+35
*
Fixed #29517 -- Added support for SQLite column check constraints on positive...
Tim Graham
2018-06-25
1
-0
/
+26
*
Refs #29350 -- Fixed 'invalid escape sequence' warning in SQLite introspection.
Tim Graham
2018-05-08
1
-1
/
+1
*
Fixed #29350 -- Fix get_primary_key_column() method in sqlite3 backend
Zackary Troop
2018-04-28
1
-2
/
+2
*
Fixed #29004 -- Added inspectdb --include-views option.
bquinn
2018-01-27
1
-9
/
+19
*
Fixed #28884 -- Fixed crash on SQLite when renaming a field in a model refere...
Simon Charette
2017-12-22
1
-13
/
+17
*
Fixed #28584 -- Dropped support for SQLite < 3.7.15.
Tim Graham
2017-10-03
1
-15
/
+0
*
Refs #27098 -- Removed DatabaseIntrospection.get_indexes() per deprecation ti...
Tim Graham
2017-09-22
1
-25
/
+0
*
Refs #27090 -- Added real database sequence introspection.
Mariusz Felisiak
2017-09-13
1
-0
/
+4
*
Fixed #14204 -- Enforced SQLite foreign key constraints.
Claude Paroz
2017-07-11
1
-0
/
+13
*
Refs #27656 -- Updated django.db docstring verbs according to PEP 257.
Anton Samarchyan
2017-02-28
1
-10
/
+10
*
Fixed #27135 -- Made index introspection return Index.suffix.
Tim Graham
2017-02-15
1
-1
/
+2
*
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-19
1
-1
/
+1
*
Refs #24245 -- Added introspection for database defaults on Oracle.
Mariusz Felisiak
2016-11-30
1
-2
/
+0
*
Fixed #27372 -- Fixed introspection of SQLite foreign keys with spaces in DDL.
Saulius Žemaitaitis
2016-11-06
1
-1
/
+1
*
Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.
Tim Graham
2016-09-17
1
-3
/
+3
*
Fixed #27098 -- Deprecated DatabaseIntrospection.get_indexes
Claude Paroz
2016-09-12
1
-0
/
+6
*
Fixed #27097 -- Added index type introspection to built-in db backends.
Akshesh
2016-09-02
1
-1
/
+3
*
Fixed #27096 -- Fixed primary key introspection for sqlite3 backend
Claude Paroz
2016-08-20
1
-1
/
+1
*
Refs #20888 -- Added index order introspection.
Akshesh
2016-08-12
1
-0
/
+12
*
Refs #17785 -- Made docstring for sqlite3's get_relations() consistent with o...
Hynek Cernoch
2015-09-18
1
-3
/
+2
*
Fixed #24637 -- Fixed database introspection with SQLite 3.8.9.
peterfarrell
2015-04-14
1
-1
/
+4
*
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-06
1
-1
/
+0
[next]