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
52ba37d0
Commit
52ba37d0
authored
Feb 16, 2007
by
Leigh B. Stoller
Browse files
New type of metadata; annotation.
parent
ba37789d
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
52ba37d0
...
...
@@ -716,7 +716,7 @@ CREATE TABLE `experiment_template_metadata` (
`metadata_vers`
smallint
(
5
)
unsigned
NOT
NULL
default
'0'
,
`internal`
tinyint
(
1
)
NOT
NULL
default
'0'
,
`hidden`
tinyint
(
1
)
NOT
NULL
default
'0'
,
`metadata_type`
enum
(
'tid'
,
'template_description'
,
'parameter_description'
)
default
NULL
,
`metadata_type`
enum
(
'tid'
,
'template_description'
,
'parameter_description'
,
'annotation'
)
default
NULL
,
PRIMARY
KEY
(
`parent_guid`
,
`parent_vers`
,
`metadata_guid`
,
`metadata_vers`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
;
...
...
sql/database-migrate.txt
View file @
52ba37d0
...
...
@@ -3887,3 +3887,10 @@ last_net_act,last_cpu_act,last_ext_act);
All of the other sql differences are made in the following script:
./step2_newids.pl
4.105: New type of metadata; annotations on templates, instances,
runs.
alter table experiment_template_metadata change metadata_type
metadata_type enum('tid','template_description',
'parameter_description', 'annotation') 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