projects
/
invirt/packages/invirt-database.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfa1e6d
)
The types table needs a boolean hvm
author
Nelson Elhage
<nelhage@mit.edu>
Wed, 8 Aug 2007 00:31:30 +0000
(20:31 -0400)
committer
Nelson Elhage
<nelhage@mit.edu>
Wed, 8 Aug 2007 00:31:30 +0000
(20:31 -0400)
svn path=/trunk/packages/sipb-xen-database/sipb-xen-database/; revision=64
sipb_xen_database/models.py
patch
|
blob
|
history
diff --git
a/sipb_xen_database/models.py
b/sipb_xen_database/models.py
index
161a0a6
..
fdfe84c
100644
(file)
--- a/
sipb_xen_database/models.py
+++ b/
sipb_xen_database/models.py
@@
-33,6
+33,7
@@
disk_table = Table('disks', meta,
types_table = Table('types', meta,
Column('type_id', String, primary_key=True, nullable=False),
Column('description', String, nullable=False),
+ Column('hvm', Boolean, nullable=False),
Column('apic', Boolean, nullable=False),
Column('acpi', Boolean, nullable=False),
Column('pae', Boolean, nullable=False))