]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- [bug] Removed erroneous "emit_events" attribute
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 20 Oct 2012 20:06:13 +0000 (16:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 20 Oct 2012 20:06:13 +0000 (16:06 -0400)
  from operations.create_table() documentation.
  #81

CHANGES
alembic/operations.py

diff --git a/CHANGES b/CHANGES
index 907aa40a0d329155bb526f80564738b2e56484ac..9d551ecd216892b870f5560d6494adb21952a857 100644 (file)
--- 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
index 0d012937c54633b2bfd14f9edd5afb0f8d5737e5..c31151d718c60653a51eb72fa1f755445d89556e 100644 (file)
@@ -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.