Changeset 859

Show
Ignore:
Timestamp:
02/13/10 18:25:01 (6 months ago)
Author:
vete
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/core/promogest/modules/VenditaDettaglio/data/VenditaDettaglioDB.py

    r845 r859  
    3737                Column('id_pos',Integer,ForeignKey(params['schema']+'.pos.id', onupdate="CASCADE", ondelete="RESTRICT")), 
    3838                Column('id_ccardtype',Integer,ForeignKey(params['schema']+'.credit_card_type.id', onupdate="CASCADE", ondelete="RESTRICT")), 
    39                 Column('id_user',Integer,ForeignKey(params['mainSchema']+'.utente.id', onupdate="CASCADE", ondelete="RESTRICT")), 
     39                Column('id_user',Integer,ForeignKey(params['mainSchema']+'.utente.id')), 
    4040                Column('id_testata_movimento',Integer,ForeignKey(params['schema']+'.testata_movimento.id', onupdate="CASCADE", ondelete="RESTRICT")), 
    4141                schema=params['schema'], 
    42                 useexisting =True 
     42#                useexisting =True 
    4343                ) 
    4444    testataScontrinoTable.create(checkfirst=True)