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
e233fa01
Commit
e233fa01
authored
Feb 12, 2004
by
Robert Ricci
Browse files
Add cable and len columns to the new_interfaces table, so that when
we're adding a small number of nodes by hand, we can set these.
parent
0dc661b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
e233fa01
...
...
@@ -606,6 +606,8 @@ CREATE TABLE new_interfaces (
switch_id
varchar
(
10
)
default
NULL
,
switch_card
tinyint
(
3
)
default
NULL
,
switch_port
tinyint
(
3
)
default
NULL
,
cable
smallint
(
6
)
default
NULL
,
len
tinyint
(
4
)
default
NULL
,
PRIMARY
KEY
(
new_node_id
,
card
)
)
TYPE
=
MyISAM
;
...
...
sql/database-migrate.txt
View file @
e233fa01
...
...
@@ -1306,3 +1306,9 @@ last_net_act,last_cpu_act,last_ext_act);
not null default 0;
alter table experiments add column ipassign_args varchar(255) \
default NULL;
1.127: Add cable and len columns to the new_interfaces table, so that when
we're adding a small number of nodes by hand, we can set these:
alter table new_interfaces add cable smallint;
alter table new_interfaces add len tinyint;
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