summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/schema.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-11-05 16:15:04 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-11-05 16:15:04 +0000
commit492f634aa9dfcaacfce6f366a7b3f54c2fc7815a (patch)
tree1c993702c9e8af9c898cd6d23e60bba0e350b246 /lib/sqlalchemy/schema.py
parentef48ddc5030548298ce4b12c645dd01c860362d3 (diff)
downloadsqlalchemy-492f634aa9dfcaacfce6f366a7b3f54c2fc7815a.tar.gz
removed 'redefine' from docstring
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r--lib/sqlalchemy/schema.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py
index 9750d37fd..68022f70b 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.