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
4576b4da
Commit
4576b4da
authored
Jun 23, 2004
by
Leigh B. Stoller
Browse files
Add modelnet OSIDs to node_types table so we know what image to load
when doing modelnet. Sure wish we had a better way to do this!
parent
731a3463
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
4576b4da
...
...
@@ -877,6 +877,8 @@ CREATE TABLE node_types (
bootdisk_unit
tinyint
(
3
)
unsigned
NOT
NULL
default
'0'
,
delay_osid
varchar
(
35
)
default
NULL
,
jail_osid
varchar
(
35
)
default
NULL
,
modelnetcore_osid
varchar
(
35
)
default
NULL
,
modelnetedge_osid
varchar
(
35
)
default
NULL
,
pxe_boot_path
text
,
isvirtnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
ismodelnet
tinyint
(
1
)
NOT
NULL
default
'0'
,
...
...
sql/database-migrate.txt
View file @
4576b4da
...
...
@@ -1713,3 +1713,10 @@ last_net_act,last_cpu_act,last_ext_act);
1.258: Minor whitespace change in database-create.txt to make
schemacheck happy.
1.259: Add modelnet OSIDs to node_types table so we know what image to load
when doing modelnet. Sure wish we had a better way to do this!
alter table node_types add modelnetcore_osid varchar(35) \
default NULL after jail_osid;
alter table node_types add modelnetedge_osid varchar(35)
default NULL after modelnetcore_osid;
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