Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
589caa98
Commit
589caa98
authored
Dec 06, 2002
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stuff to support per-widearea-node accounts.
parent
0c8a345c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
sql/database-create.sql
sql/database-create.sql
+15
-0
No files found.
sql/database-create.sql
View file @
589caa98
...
...
@@ -1010,6 +1010,7 @@ CREATE TABLE users (
admin
tinyint
(
4
)
default
'0'
,
dbedit
tinyint
(
4
)
default
'0'
,
stud
tinyint
(
4
)
default
'0'
,
webonly
tinyint
(
4
)
default
'0'
,
pswd_expires
date
default
NULL
,
cvsweb
tinyint
(
4
)
NOT
NULL
default
'0'
,
emulab_pubkey
text
,
...
...
@@ -1185,6 +1186,19 @@ CREATE TABLE webdb_table_permissions (
PRIMARY
KEY
(
table_name
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'widearea_accounts'
#
CREATE
TABLE
widearea_accounts
(
uid
varchar
(
8
)
NOT
NULL
default
''
,
node_id
varchar
(
10
)
NOT
NULL
default
''
,
trust
enum
(
'none'
,
'user'
,
'local_root'
)
default
NULL
,
date_applied
date
default
NULL
,
date_approved
datetime
default
NULL
,
PRIMARY
KEY
(
uid
,
node_id
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'widearea_delays'
#
...
...
@@ -1215,6 +1229,7 @@ CREATE TABLE widearea_privkeys (
cdkey
varchar
(
64
)
default
NULL
,
nextprivkey
varchar
(
64
)
default
NULL
,
rootkey
varchar
(
64
)
default
NULL
,
lockkey
varchar
(
64
)
default
NULL
,
requested
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
updated
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
PRIMARY
KEY
(
privkey
,
IP
)
...
...
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