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
3b8eea46
Commit
3b8eea46
authored
May 31, 2002
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed my mind. Use floats instead of ints for solver weights.
parent
e49537b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sql/database-create.sql
sql/database-create.sql
+3
-3
No files found.
sql/database-create.sql
View file @
3b8eea46
...
...
@@ -179,9 +179,9 @@ CREATE TABLE experiments (
batchstate
varchar
(
12
)
default
NULL
,
event_sched_pid
int
(
11
)
default
'0'
,
uselatestwadata
tinyint
(
4
)
NOT
NULL
default
'0'
,
wa_delay_solverweight
tinyint
(
4
)
NOT
NULL
default
'0'
,
wa_bw_solverweight
tinyint
(
4
)
NOT
NULL
default
'0'
,
wa_plr_solverweight
tinyint
(
4
)
NOT
NULL
default
'0'
,
wa_delay_solverweight
float
default
'0'
,
wa_bw_solverweight
float
default
'0'
,
wa_plr_solverweight
float
default
'0'
,
PRIMARY
KEY
(
eid
,
pid
)
)
TYPE
=
MyISAM
;
...
...
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