Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
1355d215
Commit
1355d215
authored
Jun 24, 2004
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add modelnetcore_osname and modelnetedge_osname to experiments table
so that user can select them (like jail/delay osname)
parent
a19b915b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
sql/database-create.sql
sql/database-create.sql
+2
-0
sql/database-migrate.txt
sql/database-migrate.txt
+8
-0
No files found.
sql/database-create.sql
View file @
1355d215
...
...
@@ -307,6 +307,8 @@ CREATE TABLE experiments (
usemodelnet
tinyint
(
1
)
NOT
NULL
default
'0'
,
modelnet_cores
tinyint
(
4
)
unsigned
NOT
NULL
default
'0'
,
modelnet_edges
tinyint
(
4
)
unsigned
NOT
NULL
default
'0'
,
modelnetcore_osname
varchar
(
20
)
default
NULL
,
modelnetedge_osname
varchar
(
20
)
default
NULL
,
PRIMARY
KEY
(
eid
,
pid
),
KEY
idx
(
idx
),
KEY
batchmode
(
batchmode
)
...
...
sql/database-migrate.txt
View file @
1355d215
...
...
@@ -1726,3 +1726,11 @@ last_net_act,last_cpu_act,last_ext_act);
alter table virt_nodes change type type varchar(30) default NULL;
1.261: Add modelnetcore_osname and modelnetedge_osname to experiments
table so that user can select them (like jail/delay osname)
alter table experiments add modelnetcore_osname varchar(20) \
default NULL after modelnet_edges;
alter table experiments add modelnetedge_osname varchar(20) \
default NULL after modelnetcore_osname;
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