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
75791161
Commit
75791161
authored
Feb 05, 2004
by
Leigh B. Stoller
Browse files
Add rtabid to nodes table, thus centralizing assignment of rtabids to
vnodes (via their pnode).
parent
97eba3be
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
75791161
...
...
@@ -871,6 +871,7 @@ CREATE TABLE nodes (
jailip
varchar
(
15
)
default
NULL
,
sfshostid
varchar
(
128
)
default
NULL
,
stated_tag
varchar
(
32
)
default
NULL
,
rtabid
smallint
(
5
)
unsigned
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
node_id
),
KEY
phys_nodeid
(
phys_nodeid
),
KEY
node_id
(
node_id
,
phys_nodeid
),
...
...
sql/database-migrate.txt
View file @
75791161
...
...
@@ -1286,3 +1286,8 @@ last_net_act,last_cpu_act,last_ext_act);
alter table experiments add delay_osname varchar(20) \
default NULL after jail_osname;
1.124: Add rtabid to nodes table, athough it is meaninful only on a
jailed vnode. Set in assign_wrapper.
alter table nodes add rtabid smallint(5) unsigned NOT NULL \
default '0' after stated_tag;
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