From: Mike Bayer Date: Thu, 20 Nov 2014 23:40:46 +0000 (-0500) Subject: - typo X-Git-Tag: rel_0_7_0~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41f4fbbe350008aac67532641e8eba6b7dc16cd0;p=thirdparty%2Fsqlalchemy%2Falembic.git - typo --- diff --git a/docs/build/tutorial.rst b/docs/build/tutorial.rst index 84297f1d..7b7f2562 100644 --- a/docs/build/tutorial.rst +++ b/docs/build/tutorial.rst @@ -1405,9 +1405,9 @@ Consider if we merged into our source repository another code branch which conta a revision for another table called ``shopping_cart``. This revision was made against our first Alembic revision, the one that generated ``account``. After loading the second source tree in, a new file -``27c6a30d7c24_add_accont_table.py`` exists within our ``versions`` directory. +``27c6a30d7c24_add_shopping_cart_table.py`` exists within our ``versions`` directory. Both it, as well as ``ae1027a6acf_add_a_column.py``, reference -``1975ea83b712`` as the "downgrade" revision. To illustrate:: +``1975ea83b712_add_account_table.py`` as the "downgrade" revision. To illustrate:: # main source tree: 1975ea83b712 (add account table) -> ae1027a6acf (add a column)