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
6581d052
Commit
6581d052
authored
May 30, 2002
by
Robert Ricci
Browse files
Added timestamps columns to the widearea_ tables, to indicate the
period over which the data was collected.
parent
ffa28c75
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
6581d052
...
...
@@ -1034,6 +1034,8 @@ CREATE TABLE widearea_delays (
bandwidth
double
default
NULL
,
time_stddev
float
NOT
NULL
default
'0'
,
lossrate
float
NOT
NULL
default
'0'
,
start_time
int
(
10
)
unsigned
default
NULL
,
end_time
int
(
10
)
unsigned
default
NULL
,
PRIMARY
KEY
(
node_id1
,
iface1
,
node_id2
,
iface2
)
)
TYPE
=
MyISAM
;
...
...
@@ -1052,6 +1054,8 @@ CREATE TABLE widearea_recent (
bandwidth
double
default
NULL
,
time_stddev
float
NOT
NULL
default
'0'
,
lossrate
float
NOT
NULL
default
'0'
,
start_time
int
(
10
)
unsigned
default
NULL
,
end_time
int
(
10
)
unsigned
default
NULL
,
PRIMARY
KEY
(
node_id1
,
iface1
,
node_id2
,
iface2
)
)
TYPE
=
MyISAM
;
...
...
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