From: Mike Bayer Date: Sun, 5 Nov 2006 16:15:04 +0000 (+0000) Subject: removed 'redefine' from docstring X-Git-Tag: rel_0_3_1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=492f634aa9dfcaacfce6f366a7b3f54c2fc7815a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git removed 'redefine' from docstring --- diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 9750d37fdd..68022f70b6 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -179,9 +179,6 @@ class Table(SchemaItem, sql.TableClause): autoload=False : the Columns for this table should be reflected from the database. Usually there will be no Column objects in the constructor if this property is set. - redefine=False : if this Table has already been defined in the application, clear out its columns - and redefine with new arguments. - mustexist=False : indicates that this Table must already have been defined elsewhere in the application, else an exception is raised.