+sipb-xen-database (10.34) unstable; urgency=low
+
+ * yet another new-sqlalchemy fix, this one post-0.4.2
+
+ -- Greg Price <price@mit.edu> Thu, 23 Oct 2008 23:02:46 -0400
+
sipb-xen-database (10.33) unstable; urgency=low
* Catch calls to restart Postgres and translate them into a sequential
Column('mirror', String, nullable=False))
machine_access_table = Table('machine_access', meta,
- Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False, index=True),
+ Column('machine_id', Integer, ForeignKey('machines.machine_id', ondelete='CASCADE'), nullable=False, index=True),
Column('user', String, nullable=False, index=True),
- PrimaryKeyConstraint('machine_id', 'user', ondelete='CASCADE'))
+ PrimaryKeyConstraint('machine_id', 'user'))
class Machine(object):
def __repr__(self):