Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
f7ea6c4f
Commit
f7ea6c4f
authored
Mar 25, 2004
by
Robert Ricci
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a column to node_types identifying plab physical nodes.
parent
0266654a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
sql/database-create.sql
sql/database-create.sql
+1
-0
sql/database-migrate.txt
sql/database-migrate.txt
+4
-0
No files found.
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
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