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
9ffd8db7
Commit
9ffd8db7
authored
May 20, 2008
by
Leigh B. Stoller
Browse files
Add a marker to the reserved table to indicate the node is part of a sliver.
parent
fd260946
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
9ffd8db7
...
...
@@ -2880,6 +2880,7 @@ CREATE TABLE `reserved` (
`plab_role`
enum
(
'plc'
,
'node'
,
'none'
)
NOT
NULL
default
'none'
,
`plab_boot`
tinyint
(
1
)
default
'0'
,
`mustwipe`
tinyint
(
4
)
NOT
NULL
default
'0'
,
`genisliver_idx`
int
(
10
)
unsigned
default
NULL
,
PRIMARY
KEY
(
`node_id`
),
UNIQUE
KEY
`vname`
(
`pid`
,
`eid`
,
`vname`
),
UNIQUE
KEY
`vname2`
(
`exptidx`
,
`vname`
),
...
...
sql/database-migrate.txt
View file @
9ffd8db7
...
...
@@ -4505,3 +4505,10 @@ last_net_act,last_cpu_act,last_ext_act);
alter table nodes add `uuid` varchar(40) NOT NULL default '';
update nodes set uuid=UUID();
4.152: Add a marker to the reserved table to indicate the node is part of
a sliver.
alter table reserved add `genisliver_idx` int(10) unsigned
default NULL;
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