Skip to content
GitLab
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
f4a3f8f2
Commit
f4a3f8f2
authored
Jan 15, 2005
by
Timothy Stack
Browse files
Add a parent slot to the eventlist table for tying events to a
timeline or sequence.
parent
231845af
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
f4a3f8f2
...
...
@@ -233,6 +233,7 @@ CREATE TABLE eventlist (
isgroup
tinyint
(
1
)
unsigned
default
'0'
,
arguments
text
,
atstring
text
,
parent
varchar
(
64
)
NOT
NULL
default
''
,
PRIMARY
KEY
(
pid
,
eid
,
idx
),
KEY
vnode
(
vnode
)
)
TYPE
=
MyISAM
;
...
...
sql/database-migrate.txt
View file @
f4a3f8f2
...
...
@@ -2362,3 +2362,8 @@ last_net_act,last_cpu_act,last_ext_act);
alter table experiments change maximum_nodes maximum_nodes \
int(6) unsigned default NULL;
1.306: Add a parent slot to the eventlist table for tying events to a
timeline or sequence.
alter table eventlist add parent varchar(64) not null default '';
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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