diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2018-09-12 01:23:35 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-10-02 14:02:04 -0400 |
| commit | bf8b625a3bb6c2cb5f1be3713f3bafe2c1050366 (patch) | |
| tree | bc5b93f5358016b15e7dd49ba2cb1f9002dea9d2 /docs | |
| parent | 45ef3df7d07489ee0b76479cc799faa92e443a69 (diff) | |
Refs #29722 -- Added introspection of materialized views for PostgreSQL.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/django-admin.txt | 4 | ||||
| -rw-r--r-- | docs/releases/2.2.txt | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index b6a2319341..1a3baecfda 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -402,10 +402,12 @@ PostgreSQL ^^^^^^^^^^ * Models are created for foreign tables. +* Models are created for materialized views if + :option:`--include-views` is used. .. versionchanged:: 2.2 - Support for foreign tables was added. + Support for foreign tables and materialized views was added. .. django-admin-option:: --database DATABASE diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt index 95aded1920..901868cebf 100644 --- a/docs/releases/2.2.txt +++ b/docs/releases/2.2.txt @@ -179,6 +179,9 @@ Management Commands * :djadmin:`inspectdb` now creates models for foreign tables on PostgreSQL. +* :option:`inspectdb --include-views` now creates models for materialized views + on PostgreSQL. + Migrations ~~~~~~~~~~ |
