From: Mike Bayer Date: Sat, 20 Oct 2012 20:06:13 +0000 (-0400) Subject: - [bug] Removed erroneous "emit_events" attribute X-Git-Tag: rel_0_4_1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=894afbf83c3aba783519358ac82e9c7114282701;p=thirdparty%2Fsqlalchemy%2Falembic.git - [bug] Removed erroneous "emit_events" attribute from operations.create_table() documentation. #81 --- diff --git a/CHANGES b/CHANGES index 907aa40a..9d551ecd 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 0d012937..c31151d7 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.