summaryrefslogtreecommitdiff
path: root/docs/build/tutorial.rst
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-01-18 15:27:01 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2021-01-18 15:27:01 -0500
commit9ec084aa042e0007b1abc88f8c0106bac184ddd4 (patch)
tree700b8e4ec253ba49132eed9a672e7f5c7dc21788 /docs/build/tutorial.rst
parentf86c338d7fc2cacaf479f5e75b1476452d381ebb (diff)
downloadalembic-9ec084aa042e0007b1abc88f8c0106bac184ddd4.tar.gz
remove all .. version(?:changed|added):: prior to 1.0
Change-Id: I2a1a0c273adc871b12e13d7f913609fe1122dab3
Diffstat (limited to 'docs/build/tutorial.rst')
-rw-r--r--docs/build/tutorial.rst20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/build/tutorial.rst b/docs/build/tutorial.rst
index 23f0157..487eb39 100644
--- a/docs/build/tutorial.rst
+++ b/docs/build/tutorial.rst
@@ -258,13 +258,9 @@ This file contains the following features:
dateutil.tz.gettz(<timezone>)
)
- .. versionadded:: 0.9.2
-
* ``truncate_slug_length`` - defaults to 40, the max number of characters
to include in the "slug" field.
- .. versionadded:: 0.6.1 - added ``truncate_slug_length`` configuration
-
* ``sqlalchemy.url`` - A URL to connect to the database via SQLAlchemy. This
configuration value is only used if the ``env.py`` file calls upon them;
in the "generic" template, the call to
@@ -283,27 +279,18 @@ This file contains the following features:
generating new revision files, as well as when running the ``alembic history``
command.
- .. versionchanged:: 0.9.6 the ``alembic history`` command uses the environment
- unconditionally when ``revision_environment`` is set to true.
-
* ``sourceless`` - when set to 'true', revision files that only exist as .pyc
or .pyo files in the versions directory will be used as versions, allowing
"sourceless" versioning folders. When left at the default of 'false',
only .py files are consumed as version files.
- .. versionadded:: 0.6.4
-
* ``version_locations`` - an optional list of revision file locations, to
allow revisions to exist in multiple directories simultaneously.
See :ref:`multiple_bases` for examples.
- .. versionadded:: 0.7.0
-
* ``output_encoding`` - the encoding to use when Alembic writes the
``script.py.mako`` file into a new migration file. Defaults to ``'utf-8'``.
- .. versionadded:: 0.7.0
-
* ``[loggers]``, ``[handlers]``, ``[formatters]``, ``[logger_*]``, ``[handler_*]``,
``[formatter_*]`` - these sections are all part of Python's standard logging configuration,
the mechanics of which are documented at `Configuration File Format <http://docs.python.org/library/logging.config.html#configuration-file-format>`_.
@@ -498,9 +485,6 @@ to upgrade to revision ``ae1027a6acf`` plus two additional steps::
$ alembic upgrade ae10+2
-.. versionadded:: 0.7.0 Support for relative migrations in terms of a specific
- revision.
-
Getting Information
===================
@@ -562,10 +546,6 @@ View all revisions from 1975 to the head::
$ alembic history -r1975ea:
-.. versionadded:: 0.6.0 ``alembic revision`` now accepts the ``-r`` argument to
- specify specific ranges based on version numbers, symbols, or relative deltas.
-
-
Downgrading
===========