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
7cb8345a
Commit
7cb8345a
authored
Jun 05, 2002
by
Leigh B. Stoller
Browse files
Add user_pubkeys table.
parent
9dd6d3c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
7cb8345a
...
@@ -841,6 +841,18 @@ CREATE TABLE unixgroup_membership (
...
@@ -841,6 +841,18 @@ CREATE TABLE unixgroup_membership (
PRIMARY
KEY
(
uid
,
gid
)
PRIMARY
KEY
(
uid
,
gid
)
)
TYPE
=
MyISAM
;
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'user_pubkeys'
#
CREATE
TABLE
user_pubkeys
(
uid
varchar
(
8
)
NOT
NULL
default
''
,
comment
varchar
(
128
)
NOT
NULL
default
''
,
pubkey
text
,
stamp
datetime
default
NULL
,
PRIMARY
KEY
(
uid
,
comment
)
)
TYPE
=
MyISAM
;
#
#
#
Table
structure
for
table
'users'
#
Table
structure
for
table
'users'
#
#
...
@@ -869,7 +881,6 @@ CREATE TABLE users (
...
@@ -869,7 +881,6 @@ CREATE TABLE users (
pswd_expires
date
default
NULL
,
pswd_expires
date
default
NULL
,
cvsweb
tinyint
(
4
)
NOT
NULL
default
'0'
,
cvsweb
tinyint
(
4
)
NOT
NULL
default
'0'
,
emulab_pubkey
text
,
emulab_pubkey
text
,
home_pubkey
text
,
adminoff
tinyint
(
4
)
default
'0'
,
adminoff
tinyint
(
4
)
default
'0'
,
PRIMARY
KEY
(
uid
),
PRIMARY
KEY
(
uid
),
KEY
unix_uid
(
unix_uid
)
KEY
unix_uid
(
unix_uid
)
...
...
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