Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
cc776f14
Commit
cc776f14
authored
Sep 12, 2003
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add plabnodes counter to experiment_resources table.
parent
8715d4da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
sql/database-create.sql
sql/database-create.sql
+1
-0
sql/database-migrate.txt
sql/database-migrate.txt
+7
-0
No files found.
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
Markdown
is supported
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