1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
Source: python-django-pgschemas
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Michael Fladischer <fladi@debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
mkdocs,
pybuild-plugin-pyproject,
python3-all,
python3-django,
python3-poetry-core,
python3-psycopg2,
python3-pymdownx,
Standards-Version: 4.7.2
Homepage: https://github.com/lorinkoz/django-pgschemas
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-django-pgschemas
Vcs-Git: https://salsa.debian.org/python-team/packages/python-django-pgschemas.git
Package: python-django-pgschemas-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends:
${misc:Depends},
${sphinxdoc:Depends},
Description: Django multi-tenancy using PostgreSQL schemas (Documentation)
This app uses PostgreSQL schemas to support data multi-tenancy in a single
Django project. It is a fork of django-tenants with some conceptual changes:
.
* There are static tenants and dynamic tenants. Static tenants can have their
own apps and urlconf.
* Tenants can be simultaneously routed via subdomain and via subfolder on
shared subdomain.
* Public is no longer the schema for storing the main site data. Public should
be used only for true shared data across all tenants. Table "overriding" via
search path is no longer encouraged.
* Management commands can be run on multiple schemas via wildcards - the
multiproc behavior of migrations was extended to just any tenant command.
.
This package contains the documentation.
Package: python3-django-pgschemas
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Suggests:
python-django-pgschemas-doc,
Description: Django multi-tenancy using PostgreSQL schemas (Python3 version)
This app uses PostgreSQL schemas to support data multi-tenancy in a single
Django project. It is a fork of django-tenants with some conceptual changes:
.
* There are static tenants and dynamic tenants. Static tenants can have their
own apps and urlconf.
* Tenants can be simultaneously routed via subdomain and via subfolder on
shared subdomain.
* Public is no longer the schema for storing the main site data. Public should
be used only for true shared data across all tenants. Table "overriding" via
search path is no longer encouraged.
* Management commands can be run on multiple schemas via wildcards - the
multiproc behavior of migrations was extended to just any tenant command.
.
This package contains the Python 3 version of the library.
|