summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/schema.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34553 -- Fixed improper % escaping of literal in constraints.Simon Charette2023-05-101-2/+0
* Fixed #34505 -- Skipped varchar_pattern_ops/text_pattern_ops index creation w...Petter Friberg2023-04-211-1/+3
* Made PostgreSQL's SchemaEditor._create_index_sql() respect the "sql" argument.Dan Glass2023-02-061-1/+1
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+0
* Fixed #34219 -- Preserved Char/TextField.db_collation when altering column type.Mariusz Felisiak2022-12-221-5/+12
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-151-0/+8
* Refs #33308 -- Added psycopg_any.sql.quote() hook.Florian Apolloner2022-12-121-6/+2
* Refs #33308 -- Moved psycopg2 imports to the psycopg_any module.Florian Apolloner2022-12-121-3/+2
* Refs #34058 -- Fixed changing/deleting sequences when altering pre-Django 4.1...Mariusz Felisiak2022-10-011-25/+36
* Fixed #34058 -- Changed sequence types when altering pre-Django 4.1 auto fiel...Mariusz Felisiak2022-09-291-1/+24
* Fixed #34027 -- Fixed migrations crash when altering type of char/text fields...David Sanders2022-09-251-12/+14
* Fixed #33932 -- Fixed altering AutoFields to OneToOneField on PostgreSQL.Benoît Vinot2022-08-171-1/+1
* Fixed #33901 -- Skipped varchar_pattern_ops/text_pattern_ops index creation w...Haolun Chai2022-08-151-0/+4
* Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...Mariusz Felisiak2022-08-021-4/+30
* Fixed #25105 -- Checked deferred constraints before updating rows on PostgreSQL.David Wobrock2022-05-041-0/+7
* Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.Florian Apolloner2022-04-131-56/+30
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-2/+4
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-63/+141
* Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg2021-01-131-1/+2
* Refs #26167 -- Made DatabaseSchemaEditor._create_index_sql()'s fields argumen...Hannes Ljungberg2020-12-231-6/+16
* Fixed #24533 -- Dropped PostgreSQL sequence and Oracle identity when migratin...Tim Graham2020-08-241-0/+13
* Fixed #31815 -- Fixed schema value encoding on PostgreSQL.Mariusz Felisiak2020-07-271-1/+4
* Fixed #31735 -- Fixed migrations crash on namespaced inline FK addition on Po...Simon Charette2020-06-241-1/+1
* Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg2020-06-041-3/+8
* Fixed #31106 -- Fixed migrations crash on PostgreSQL 10+ when adding FK const...Mariusz Felisiak2019-12-231-1/+6
* Refs #28816 -- Prevented silencing data loss when decreasing CharField.max_le...Hasan Ramezani2019-10-171-2/+16
* Fixed #30800 -- Fixed migrations crash when altering a field with custom db_t...Mariusz Felisiak2019-09-251-1/+4
* Fixed #21039 -- Added AddIndexConcurrently/RemoveIndexConcurrently operations...Mads Jensen2019-08-211-0/+25
* Fixed #30661 -- Added models.SmallAutoField.Nick Pope2019-08-021-3/+3
* Refs #30664 -- Fixed migrations crash when altering AutoField/BigAutoField wi...Mariusz Felisiak2019-08-011-1/+1
* Fixed #30664 -- Fixed migrations crash when altering table on SQLite or alter...Ngalim Siregar2019-08-011-1/+2
* Fixed #28816 -- Prevented silencing data loss when decreasing CharField.max_l...Hasan Ramezani2019-05-211-3/+10
* Fixed #30408 -- Fixed crash when adding check constraints with LIKE operator ...Simon Charette2019-04-301-0/+2
* Fixed #30266 -- Kept a sequence owner when altering an AutoField/BigAutoField...Dolan Antenucci2019-04-081-0/+9
* Fixed "byte string" typo in various docs and comments.Mariusz Felisiak2019-03-281-1/+1
* Fixed #30258 -- Adjusted postgres schema value quoting of ranges.Simon Charette2019-03-181-1/+2
* Fixed #30108 -- Allowed adding foreign key constraints in the same statement ...Dan Tao2019-01-291-0/+1
* Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki2019-01-011-2/+2
* Fixed #29547 -- Added support for partial indexes.Mads Jensen2018-10-291-1/+1
* Fixed #28077 -- Added support for PostgreSQL opclasses in Index.Ian Foote2018-06-291-4/+8
* Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen2017-11-291-3/+4
* Refs #23766 -- Added tests for CursorWrapper.callproc().Mariusz Felisiak2017-08-081-0/+2
* Refs #25530 -- Changed _create_index_name to take a table as first parameter.Simon Charette2017-06-201-2/+2
* Fixed #28275 -- Added more hooks to SchemaEditor._alter_field().Florian Apolloner2017-06-061-2/+3
* Fixed #27860 -- Dropped varchar_pattern_ops/text_pattern_ops index before alt...Mariusz Felisiak2017-05-241-0/+9
* Refs #27860 -- Simplified deleting indexes on PostgreSQL using "IF EXISTS".Mariusz Felisiak2017-03-031-4/+2
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-3/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-5/+3
* Fixed #25492 -- Checked deferred foreign key constraints before dropping them.Simon Charette2016-12-241-0/+4
* Fixed #27030 -- Added contrib.postgres.indexes.GinIndex.Akshesh2016-08-121-0/+1