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
e1bd7609
Commit
e1bd7609
authored
Jul 13, 2007
by
Russ Fish
Browse files
The recent changes made to the firewalls table in step3_newids.pl were left out.
parent
b54ae4da
Changes
1
Show whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
e1bd7609
...
...
@@ -1034,10 +1034,12 @@ DROP TABLE IF EXISTS `firewalls`;
CREATE
TABLE
`firewalls`
(
`pid`
varchar
(
12
)
NOT
NULL
default
''
,
`eid`
varchar
(
32
)
NOT
NULL
default
''
,
`exptidx`
int
(
11
)
NOT
NULL
default
'0'
,
`fwname`
varchar
(
32
)
NOT
NULL
default
''
,
`vlan`
int
(
11
)
default
NULL
,
`vlanid`
int
(
11
)
default
NULL
,
PRIMARY
KEY
(
`pid`
,
`eid`
,
`fwname`
),
PRIMARY
KEY
(
`exptidx`
,
`fwname`
),
KEY
`pideid`
(
`pid`
,
`eid`
,
`fwname`
),
KEY
`vlan`
(
`vlan`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
...
...
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