summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-06-22 18:22:21 -0700
committerSteve Piercy <web@stevepiercy.com>2018-06-22 18:22:21 -0700
commitc8f3bf5a70ff74a509a7ec4721797e407a31d507 (patch)
tree76ab039d78a3a96b352421534f9ba90dc7123fdb /docs/glossary.rst
parent8b43919a98177d4591736c3125b79ab0eeed290f (diff)
downloadpyramid-c8f3bf5a70ff74a509a7ec4721797e407a31d507.tar.gz
pyramid-c8f3bf5a70ff74a509a7ec4721797e407a31d507.tar.bz2
pyramid-c8f3bf5a70ff74a509a7ec4721797e407a31d507.zip
Add mention of migrations and Alembic in design and glossary.
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 7e16b569e..16a719e10 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -1206,3 +1206,6 @@ Glossary
context manager
A context manager is an object that defines the runtime context to be established when executing a :ref:`with <python:with>` statement in Python. The context manager handles the entry into, and the exit from, the desired runtime context for the execution of the block of code. Context managers are normally invoked using the ``with`` statement, but can also be used by directly invoking their methods. Pyramid adds context managers for :class:`pyramid.config.Configurator`, :meth:`pyramid.interfaces.IRouter.request_context`, :func:`pyramid.paster.bootstrap`, :func:`pyramid.scripting.prepare`, and :func:`pyramid.testing.testConfig`. See also the Python documentation for :ref:`With Statement Context Managers <python:context-managers>` and :pep:`343`.
+
+ Alembic
+ `Alembic <http://alembic.zzzcomputing.com/en/latest/>`_ is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python.