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
cd239a75
Commit
cd239a75
authored
Sep 18, 2003
by
Robert Ricci
Browse files
Add the wideare_nodeinfo.{hostname,site} columns, and add a missing
entry to database-migrate.sql that I forgot with my last commit.
parent
c0d25040
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
cd239a75
...
...
@@ -1668,6 +1668,8 @@ CREATE TABLE widearea_nodeinfo (
country
tinytext
,
zip
tinytext
,
external_node_id
tinytext
,
hostname
varchar
(
255
)
default
NULL
,
site
varchar
(
255
)
default
NULL
,
PRIMARY
KEY
(
node_id
)
)
TYPE
=
MyISAM
;
...
...
sql/database-migrate.txt
View file @
cd239a75
...
...
@@ -959,3 +959,14 @@ last_net_act,last_cpu_act,last_ext_act);
several orders of magnitude!
alter table testbed_stats add index(rsrcidx);
1.184: Put an index on the path in the os_info table, since stated needs
to select on it
alter table os_info add key path;
1.185: Add two new columns to widearea_nodeinfo to record the node's hostname
and a match-able site name
alter table widearea_nodeinfo add column hostname varchar(255);
alter table widearea_nodeinfo add column site varchar(255);
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