Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
f4a3f8f2
Commit
f4a3f8f2
authored
Jan 15, 2005
by
Timothy Stack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
sql/database-create.sql
sql/database-create.sql
+1
-0
sql/database-migrate.txt
sql/database-migrate.txt
+5
-0
No files found.
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
Markdown
is supported
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