Merge pull request #180 from arturhoo/patch-1

Fix typo on #create_column
This commit is contained in:
Friedrich Lindenberg 2016-09-22 17:56:51 +02:00 committed by GitHub
commit 2928ba4f39

View File

@ -289,7 +289,7 @@ class Table(object):
def create_column(self, name, type):
"""
Explicitely create a new column ``name`` of a specified type.
Explicitly create a new column ``name`` of a specified type.
``type`` must be a `SQLAlchemy column type <http://docs.sqlalchemy.org/en/rel_0_8/core/types.html>`_.
::