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
828b56fc
Commit
828b56fc
authored
Aug 07, 2003
by
Leigh B. Stoller
Browse files
Add issubnode to node_types table.
parent
c12ed4ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
828b56fc
...
...
@@ -716,6 +716,7 @@ CREATE TABLE node_types (
pxe_boot_path
text
,
isvirtnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
isremotenode
tinyint
(
4
)
NOT
NULL
default
'0'
,
issubnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
type
)
)
TYPE
=
MyISAM
;
...
...
sql/database-migrate.txt
View file @
828b56fc
...
...
@@ -842,3 +842,8 @@ last_net_act,last_cpu_act,last_ext_act);
alter table experiments add sync_server varchar(32) \
default NULL after idle_ignore;
1.171: Add issubnode slot for dealing with IXP type things.
alter table node_types add issubnode tinyint(4) NOT NULL default '0' \
after isremotenode;
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