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
43a7388e
Commit
43a7388e
authored
Mar 04, 2002
by
Robert Ricci
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to match current database schema
parent
f0e81396
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
sql/database-create.sql
sql/database-create.sql
+20
-1
No files found.
sql/database-create.sql
View file @
43a7388e
...
...
@@ -102,6 +102,25 @@ CREATE TABLE event_objecttypes (
PRIMARY
KEY
(
idx
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'eventlist'
#
CREATE
TABLE
eventlist
(
pid
varchar
(
12
)
NOT
NULL
default
''
,
eid
varchar
(
32
)
NOT
NULL
default
''
,
idx
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
time
float
(
10
,
3
)
NOT
NULL
default
'0.000'
,
vnode
varchar
(
32
)
NOT
NULL
default
''
,
vname
varchar
(
20
)
NOT
NULL
default
''
,
objecttype
smallint
(
5
)
unsigned
NOT
NULL
default
'0'
,
eventtype
smallint
(
5
)
unsigned
NOT
NULL
default
'0'
,
arguments
tinytext
,
atstring
tinytext
,
PRIMARY
KEY
(
pid
,
eid
,
idx
),
KEY
vnode
(
vnode
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'experiments'
#
...
...
@@ -662,7 +681,7 @@ CREATE TABLE users (
dbedit
tinyint
(
4
)
default
'0'
,
stud
tinyint
(
4
)
default
'0'
,
pswd_expires
date
default
NULL
,
cvsweb
tinyint
(
4
)
default
NULL
,
cvsweb
tinyint
(
4
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
uid
),
KEY
unix_uid
(
unix_uid
)
)
TYPE
=
MyISAM
;
...
...
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