Changeset 859
- Timestamp:
- 02/13/10 18:25:01 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/promogest/modules/VenditaDettaglio/data/VenditaDettaglioDB.py
r845 r859 37 37 Column('id_pos',Integer,ForeignKey(params['schema']+'.pos.id', onupdate="CASCADE", ondelete="RESTRICT")), 38 38 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')), 40 40 Column('id_testata_movimento',Integer,ForeignKey(params['schema']+'.testata_movimento.id', onupdate="CASCADE", ondelete="RESTRICT")), 41 41 schema=params['schema'], 42 useexisting =True42 # useexisting =True 43 43 ) 44 44 testataScontrinoTable.create(checkfirst=True)
