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
43a7388e
Commit
43a7388e
authored
Mar 04, 2002
by
Robert Ricci
Browse files
Update to match current database schema
parent
f0e81396
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
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