summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-10-20 16:06:13 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-10-20 16:06:13 -0400
commit894afbf83c3aba783519358ac82e9c7114282701 (patch)
tree2610da5c615af804cf329a12a3d7010ae2e01449
parent89498d6263acd33fd452144895cac099fafd8f68 (diff)
downloadalembic-894afbf83c3aba783519358ac82e9c7114282701.tar.gz
- [bug] Removed erroneous "emit_events" attribute
from operations.create_table() documentation. #81
-rw-r--r--CHANGES4
-rw-r--r--alembic/operations.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 907aa40..9d551ec 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,10 @@
when downgrade --sql is used without specifying
specific start/end versions. #66
+- [bug] Removed erroneous "emit_events" attribute
+ from operations.create_table() documentation.
+ #81
+
0.4.0
=====
- [feature] Support for tables in alternate schemas
diff --git a/alembic/operations.py b/alembic/operations.py
index 0d01293..c31151d 100644
--- a/alembic/operations.py
+++ b/alembic/operations.py
@@ -561,10 +561,6 @@ class Operations(object):
the table, as well as optional :class:`~sqlalchemy.schema.Constraint`
objects
and :class:`~.sqlalchemy.schema.Index` objects.
- :param emit_events: if ``True``, emit ``before_create`` and
- ``after_create`` events when the table is being created. In
- particular, the Postgresql ENUM type will emit a CREATE TYPE within
- these events.
:param schema: Optional schema name to operate within.
:param \**kw: Other keyword arguments are passed to the underlying
:class:`.Table` object created for the command.