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-stable
Commits
8b957670
Commit
8b957670
authored
Jun 16, 2004
by
Leigh B. Stoller
Browse files
Add a linktest_pid slot to the experiments table so that we can kill
off linktest async via the web interface.
parent
f190d797
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
8b957670
...
...
@@ -302,6 +302,7 @@ CREATE TABLE experiments (
use_ipassign
tinyint
(
4
)
NOT
NULL
default
'0'
,
ipassign_args
varchar
(
255
)
default
NULL
,
linktest_level
tinyint
(
4
)
NOT
NULL
default
'0'
,
linktest_pid
int
(
11
)
default
'0'
,
useprepass
tinyint
(
1
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
eid
,
pid
),
KEY
idx
(
idx
),
...
...
sql/database-migrate.txt
View file @
8b957670
...
...
@@ -1602,7 +1602,6 @@ last_net_act,last_cpu_act,last_ext_act);
alter table virt_lans add index vnode (pid,eid,vnode);
1.251: Add floorimages and buildings tables for wireless floormap
support. This is rather primitive still; We just need a place to
define buildings and floors in buildings, so that we do not hardwire
...
...
@@ -1659,3 +1658,9 @@ last_net_act,last_cpu_act,last_ext_act);
ALTER TABLE widearea_updates ADD
force enum('yes','no') NOT NULL default 'no' after update_started;
1.255: Add a linktest_pid slot to the experiments table so that we can
kill off linktest async via the web interface.
alter table experiments add linktest_pid int(11) default '0' \
after linktest_level;
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