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
3513a97d
Commit
3513a97d
authored
Sep 25, 2006
by
Leigh B. Stoller
Browse files
Add starting and ending archive tags to experiment run, to replace the
single end of run archive tag.
parent
8bacac71
Changes
3
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
3513a97d
...
...
@@ -486,6 +486,8 @@ CREATE TABLE experiment_runs (
idx
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
runid
varchar
(
32
)
NOT
NULL
default
''
,
description
tinytext
,
starting_archive_tag
varchar
(
64
)
default
NULL
,
ending_archive_tag
varchar
(
64
)
default
NULL
,
archive_tag
varchar
(
64
)
default
NULL
,
start_time
datetime
default
NULL
,
stop_time
datetime
default
NULL
,
...
...
sql/database-migrate.txt
View file @
3513a97d
...
...
@@ -3685,3 +3685,14 @@ last_net_act,last_cpu_act,last_ext_act);
caps for plab nodes.
alter table widearea_nodeinfo add bwlimit varchar(32) default NULL;
4.89: Add starting and ending archive tags to experiment run, to
replace the single end of run archive tag.
**** Skip this stuff below if you just did 4.41 above.
alter table experiment_runs add \
starting_archive_tag varchar(64) default NULL after description;
alter table experiment_runs add \
ending_archive_tag varchar(64) default NULL after starting_archive_tag;
sql/templates.sql
View file @
3513a97d
...
...
@@ -362,6 +362,9 @@ CREATE TABLE experiment_runs (
runid
varchar
(
32
)
NOT
NULL
default
''
,
-- A short description; not sure I really want this.
description
tinytext
,
-- The archive tags for the start and end of the run.
starting_archive_tag
varchar
(
64
)
default
NULL
,
ending_archive_tag
varchar
(
64
)
default
NULL
,
-- The tag for the commit at the end of the run.
archive_tag
varchar
(
64
)
default
NULL
,
-- Timestamps
...
...
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