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
2ca7d25d
Commit
2ca7d25d
authored
Jul 21, 2003
by
Robert Ricci
Browse files
Added a new column to new_nodes, so we can tell the IP address that
the node was temporarily given while it's configuring.
parent
53c11ab6
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
2ca7d25d
...
...
@@ -586,6 +586,7 @@ CREATE TABLE new_nodes (
node_id
varchar
(
10
)
NOT
NULL
default
''
,
type
varchar
(
30
)
default
NULL
,
IP
varchar
(
15
)
default
NULL
,
temporary_IP
varchar
(
15
)
default
NULL
,
dmesg
text
,
created
timestamp
(
14
)
NOT
NULL
,
PRIMARY
KEY
(
new_node_id
)
...
...
sql/database-migrate.txt
View file @
2ca7d25d
...
...
@@ -779,3 +779,8 @@ last_net_act,last_cpu_act,last_ext_act);
alter table new_interfaces add column card int not null after
new_node_id;
alter table new_interfaces add primary key (new_node_id,card);
1.164: Added a new column to new_nodes, so we can tell the IP address that
the node was temporarily given while it's configuring:
alter table new_nodes add column temporary_IP varchar(15) after IP;
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