Skip to content
GitLab
Menu
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
cc776f14
Commit
cc776f14
authored
Sep 12, 2003
by
Leigh B. Stoller
Browse files
Add plabnodes counter to experiment_resources table.
parent
8715d4da
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
cc776f14
...
...
@@ -177,6 +177,7 @@ CREATE TABLE experiment_resources (
vnodes
smallint
(
5
)
unsigned
default
'0'
,
pnodes
smallint
(
5
)
unsigned
default
'0'
,
wanodes
smallint
(
5
)
unsigned
default
'0'
,
plabnodes
smallint
(
5
)
unsigned
default
'0'
,
simnodes
smallint
(
5
)
unsigned
default
'0'
,
jailnodes
smallint
(
5
)
unsigned
default
'0'
,
delaynodes
smallint
(
5
)
unsigned
default
'0'
,
...
...
sql/database-migrate.txt
View file @
cc776f14
...
...
@@ -948,3 +948,10 @@ last_net_act,last_cpu_act,last_ext_act);
feature varchar(30) not null, weight float not null default 0.0,
primary key (node_id,feature));
1.181: Add plabnodes count to the experiment resource table so we can
track exactly how many slices an experiment is using.
alter table experiment_resources add
plabnodes smallint(5) unsigned default '0' after wanodes;
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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