From da8d7c730cf06004245c9ff92060ec2b3fef6faa Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 1 Sep 2007 23:08:30 +0000 Subject: [PATCH] entity refs --- doc/build/content/metadata.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build/content/metadata.txt b/doc/build/content/metadata.txt index f9b361a24a..a76cd67241 100644 --- a/doc/build/content/metadata.txt +++ b/doc/build/content/metadata.txt @@ -427,13 +427,13 @@ Note that some databases do not actively support check constraints such as MySQL mytable = Table('mytable', meta, # per-column CHECK constraint - Column('col1', Integer, CheckConstraint('col1>5')), + Column('col1', Integer, CheckConstraint('col1>5')), Column('col2', Integer), Column('col3', Integer), # table level CHECK constraint. 'name' is optional. - CheckConstraint('col2 > col3 + 5', name='check1') + CheckConstraint('col2 > col3 + 5', name='check1') ) #### Indexes -- 2.47.3