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
56634b2d
Commit
56634b2d
authored
Jul 02, 2012
by
Gary Wong
Browse files
Add the virt_node_public_addr schema.
parent
6cf7b263
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
56634b2d
...
...
@@ -4481,6 +4481,20 @@ CREATE TABLE `virt_node_motelog` (
PRIMARY
KEY
(
`pid`
,
`eid`
,
`vname`
,
`logfileid`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
--
-- Table structure for table `virt_node_public_addr`
--
DROP
TABLE
IF
EXISTS
`virt_node_public_addr`
;
CREATE
TABLE
`virt_node_public_addr`
(
`IP`
varchar
(
15
)
NOT
NULL
default
''
,
`mask`
varchar
(
15
)
default
NULL
,
`node_id`
varchar
(
32
)
default
NULL
,
`card`
tinyint
(
3
)
unsigned
default
'0'
,
`port`
tinyint
(
3
)
unsigned
default
'0'
,
PRIMARY
KEY
(
`IP`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
--
-- Table structure for table `virt_node_startloc`
--
...
...
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