From 2eaf13725429492375779f86f0586273fb1969c8 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Sat, 25 Oct 2008 15:02:01 -0400 Subject: [PATCH] Fix a typo in the new CDROM table svn path=/trunk/packages/sipb-xen-database/; revision=1250 --- debian/changelog | 6 ++++++ python/database/models.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 2a0382b..e2a5d50 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sipb-xen-database (10.36.1) unstable; urgency=low + + * Typo in the new tables + + -- Evan Broder Sat, 25 Oct 2008 15:01:47 -0400 + sipb-xen-database (10.36) unstable; urgency=low * Kill the remnants of the sipb_xen_database package diff --git a/python/database/models.py b/python/database/models.py index 52bd7c1..5c3a19a 100644 --- a/python/database/models.py +++ b/python/database/models.py @@ -69,7 +69,7 @@ mirrors_table = Table('mirrors', meta, cdroms_table = Table('cdroms', meta, Column('cdrom_id', String, primary_key=True, nullable=False), Column('description', String, nullable=False), - Column('mirror_id', String, ForeignKey('mirrors.mirror_id'), + Column('mirror_id', String, ForeignKey('mirrors.mirror_id')), Column('uri_suffix', String)) autoinstalls_table = Table('autoinstalls', meta, -- 1.7.9.5