Changeset 1174 for trunk/packages
- Timestamp:
- Oct 23, 2008, 11:04:03 PM (16 years ago)
- Location:
- trunk/packages/sipb-xen-database
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/sipb-xen-database/debian/changelog
r1152 r1174 1 sipb-xen-database (10.34) unstable; urgency=low 2 3 * yet another new-sqlalchemy fix, this one post-0.4.2 4 5 -- Greg Price <price@mit.edu> Thu, 23 Oct 2008 23:02:46 -0400 6 1 7 sipb-xen-database (10.33) unstable; urgency=low 2 8 -
trunk/packages/sipb-xen-database/python/database/models.py
r1136 r1174 75 75 76 76 machine_access_table = Table('machine_access', meta, 77 Column('machine_id', Integer, ForeignKey('machines.machine_id' ), nullable=False, index=True),77 Column('machine_id', Integer, ForeignKey('machines.machine_id', ondelete='CASCADE'), nullable=False, index=True), 78 78 Column('user', String, nullable=False, index=True), 79 PrimaryKeyConstraint('machine_id', 'user' , ondelete='CASCADE'))79 PrimaryKeyConstraint('machine_id', 'user')) 80 80 81 81 class Machine(object):
Note: See TracChangeset
for help on using the changeset viewer.