Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
dcb3707c
Commit
dcb3707c
authored
Sep 26, 2003
by
Robert Ricci
Browse files
Add a virt_node_desires table to finally be able to pass node desires
into assign.
parent
12240966
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
dcb3707c
...
...
@@ -1496,6 +1496,19 @@ CREATE TABLE virt_lans (
KEY
pid
(
pid
,
eid
,
vname
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table 'virt_node_desires'
--
CREATE
TABLE
virt_node_desires
(
pid
varchar
(
12
)
NOT
NULL
default
''
,
eid
varchar
(
32
)
NOT
NULL
default
''
,
vname
varchar
(
32
)
NOT
NULL
default
''
,
desire
varchar
(
30
)
NOT
NULL
default
''
,
weight
float
default
NULL
,
PRIMARY
KEY
(
pid
,
eid
,
vname
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table 'virt_nodes'
--
...
...
sql/database-migrate.txt
View file @
dcb3707c
...
...
@@ -985,3 +985,10 @@ last_net_act,last_cpu_act,last_ext_act);
alter table experiments change batchstate batchstate varchar(16) \
default NULL;
1.188: Add a virt_node_desires table to finally be able to pass node
desires into assign.
create table virt_node_desires (pid varchar(12) not null, \
eid varchar(32) not null, vname varchar(32) not null, \
desire varchar(30) not null, weight float, \
primary key(pid,eid,vname));
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment