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
102b42ef
Commit
102b42ef
authored
Jan 30, 2003
by
Robert Ricci
Browse files
Added another key to the virt_routes table to speed up queries.
parent
f731bbbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
102b42ef
...
...
@@ -1131,7 +1131,8 @@ CREATE TABLE virt_routes (
dst_mask
varchar
(
15
)
default
'255.255.255.0'
,
nexthop
varchar
(
32
)
NOT
NULL
default
''
,
cost
int
(
11
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
pid
,
eid
,
vname
,
src
,
dst
)
PRIMARY
KEY
(
pid
,
eid
,
vname
,
src
,
dst
),
KEY
pid
(
pid
,
eid
,
vname
)
)
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