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
2ca7d25d
Commit
2ca7d25d
authored
Jul 21, 2003
by
Robert Ricci
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
sql/database-create.sql
sql/database-create.sql
+1
-0
sql/database-migrate.txt
sql/database-migrate.txt
+5
-0
No files found.
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
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