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-stable
Commits
1c78a04c
Commit
1c78a04c
authored
May 21, 2004
by
Leigh B. Stoller
Browse files
Add trivlink_maxspeed to node_types table for Mike; defaults to 0.
parent
4d85de80
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
1c78a04c
...
...
@@ -845,6 +845,7 @@ CREATE TABLE node_types (
isplabphysnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
issimnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
simnode_capacity
smallint
(
5
)
unsigned
NOT
NULL
default
'0'
,
trivlink_maxspeed
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
type
)
)
TYPE
=
MyISAM
;
...
...
sql/database-migrate.txt
View file @
1c78a04c
...
...
@@ -1526,3 +1526,7 @@ last_net_act,last_cpu_act,last_ext_act);
alter table node_types add column bootdisk_unit tinyint(3) unsigned \
not null default 0 after disktype;
1.244: Add trivlink_maxspeed for Mike.
alter table node_types add trivlink_maxspeed int(11) unsigned \
NOT NULL default '0' after simnode_capacity;
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