Changeset 5031

Show
Ignore:
Timestamp:
07/24/08 16:28:08 (6 months ago)
Author:
splee
Message:

Fixing tab spacing in model.template_tmpl

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/model/model.template_tmpl

    r4597 r5031  
    77  
    88foo_table = Table("Foo", metadata, 
    9     Column("id", types.Integer, primary_key=True), 
    10     Column("bar", types.String(255), nullable=False), 
    11    
     9    Column("id", types.Integer, primary_key=True), 
     10    Column("bar", types.String(255), nullable=False), 
     11   
    1212 
    1313class Foo(object): 
     
    1919mapper(Foo, foo_table) 
    2020 
    21 Classes for reflected tables may be defined here, but the table and 
    22 mapping itself must be done in the init_model function. 
     21# Classes for reflected tables may be defined here, but the table and 
     22# mapping itself must be done in the init_model function. 
    2323 
    2424