X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/blobdiff_plain/69ff84f7de3d72cda2e49f6125268475db6f41ad..4bf49a9cd6dbf307fe918e9ce349bd1c62b1535c:/python/database/models.py diff --git a/python/database/models.py b/python/database/models.py index 793bc80..f3d36e9 100644 --- a/python/database/models.py +++ b/python/database/models.py @@ -14,6 +14,7 @@ __all__ = ['meta', 'disk_table', 'types_table', 'cdroms_table', + 'mirrors_table', 'autoinstalls_table', 'Machine', 'MachineAccess', @@ -21,6 +22,7 @@ __all__ = ['meta', 'Disk', 'Type', 'CDROM', + 'Mirror', 'Autoinstall', 'or_', ] @@ -62,16 +64,23 @@ types_table = Table('types', meta, Column('acpi', Boolean, nullable=False), Column('pae', Boolean, nullable=False)) +mirrors_table = Table('mirrors', meta, + Column('mirror_id', String, primary_key=True, nullable=False), + Column('uri_prefix', String, nullable=False)) + cdroms_table = Table('cdroms', meta, Column('cdrom_id', String, primary_key=True, nullable=False), - Column('description', String, nullable=False)) + Column('description', String, nullable=False), + Column('mirror_id', String, ForeignKey('mirrors.mirror_id')), + Column('uri_suffix', String)) autoinstalls_table = Table('autoinstalls', meta, Column('autoinstall_id', String, primary_key=True, nullable=False), Column('description', String, nullable=False), Column('type_id', String, ForeignKey('types.type_id'), nullable=False), Column('distribution', String, nullable=False), - Column('mirror', String, nullable=False)) + Column('mirror', String, nullable=False), + Column('arch', String, nullable=False)) machine_access_table = Table('machine_access', meta, Column('machine_id', Integer, ForeignKey('machines.machine_id', ondelete='CASCADE'), nullable=False, index=True), @@ -98,6 +107,10 @@ class Type(object): def __repr__(self): return "" % (self.type_id, self.description) +class Mirror(object): + def __repr__(self): + return "" % (self.mirror_id) + class CDROM(object): def __repr__(self): return "" % (self.cdrom_id, self.description) @@ -115,7 +128,9 @@ session.mapper(MachineAccess, machine_access_table) session.mapper(NIC, nic_table) session.mapper(Disk, disk_table) session.mapper(Type, types_table) -session.mapper(CDROM, cdroms_table) +session.mapper(Mirror, mirrors_table) +session.mapper(CDROM, cdroms_table, + properties={'mirror': relation(Mirror, backref="cdroms")}) session.mapper(Autoinstall, autoinstalls_table) def clear_cache():