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
f7ea6c4f
Commit
f7ea6c4f
authored
Mar 25, 2004
by
Robert Ricci
Browse files
Add a column to node_types identifying plab physical nodes.
parent
0266654a
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
f7ea6c4f
...
...
@@ -802,6 +802,7 @@ CREATE TABLE node_types (
isremotenode
tinyint
(
4
)
NOT
NULL
default
'0'
,
issubnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
isplabdslice
tinyint
(
4
)
NOT
NULL
default
'0'
,
isplabphysnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
issimnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
simnode_capacity
smallint
(
5
)
unsigned
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
type
)
...
...
sql/database-migrate.txt
View file @
f7ea6c4f
...
...
@@ -1408,3 +1408,7 @@ last_net_act,last_cpu_act,last_ext_act);
PRIMARY KEY (node_id)
) TYPE=MyISAM;
1.234: Add a column to node_types identifying plab physical nodes.
alter table node_types add column isplabphysnode tinyint(4) not null \
default 0 after isplabdslice;
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