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
24a19699
Commit
24a19699
authored
Aug 17, 2002
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync up with all the changes for cdroms.
parent
cce34ff7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
2 deletions
+43
-2
sql/database-create.sql
sql/database-create.sql
+43
-2
No files found.
sql/database-create.sql
View file @
24a19699
...
...
@@ -4,6 +4,21 @@
#
--------------------------------------------------------
#
Server
version
3
.
23
.
49
-
log
#
#
Table
structure
for
table
'cdroms'
#
CREATE
TABLE
cdroms
(
cdkey
varchar
(
64
)
NOT
NULL
default
''
,
user_name
tinytext
NOT
NULL
,
user_email
tinytext
NOT
NULL
,
ready
tinyint
(
4
)
NOT
NULL
default
'0'
,
requested
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
created
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
version
int
(
10
)
unsigned
NOT
NULL
default
'1'
,
PRIMARY
KEY
(
cdkey
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'comments'
#
...
...
@@ -432,6 +447,17 @@ CREATE TABLE next_reserve (
PRIMARY
KEY
(
node_id
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'nextfreenode'
#
CREATE
TABLE
nextfreenode
(
nodetype
varchar
(
30
)
NOT
NULL
default
''
,
nextid
int
(
10
)
unsigned
NOT
NULL
default
'1'
,
nextpri
int
(
10
)
unsigned
NOT
NULL
default
'1'
,
PRIMARY
KEY
(
nodetype
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'node_idlestats'
#
...
...
@@ -470,7 +496,6 @@ CREATE TABLE node_types (
pxe_boot_path
text
,
isvirtnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
isremotenode
tinyint
(
4
)
NOT
NULL
default
'0'
,
named_root
varchar
(
10
)
default
NULL
,
PRIMARY
KEY
(
type
)
)
TYPE
=
MyISAM
;
...
...
@@ -724,7 +749,7 @@ CREATE TABLE projects (
public_whynot
tinytext
,
expt_count
mediumint
(
8
)
unsigned
default
'0'
,
expt_last
date
default
NULL
,
pcremote_ok
set
(
'pcplab'
,
'pcron'
)
default
NULL
,
pcremote_ok
set
(
'pcplab'
,
'pcron'
,
'pcwa'
)
default
NULL
,
PRIMARY
KEY
(
pid
),
KEY
unix_gid
(
unix_gid
)
)
TYPE
=
MyISAM
;
...
...
@@ -1110,6 +1135,22 @@ CREATE TABLE widearea_delays (
PRIMARY
KEY
(
node_id1
,
iface1
,
node_id2
,
iface2
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'widearea_privkeys'
#
CREATE
TABLE
widearea_privkeys
(
privkey
varchar
(
64
)
NOT
NULL
default
''
,
IP
varchar
(
15
)
NOT
NULL
default
'1.1.1.1'
,
user_name
tinytext
NOT
NULL
,
user_email
tinytext
NOT
NULL
,
cdkey
varchar
(
64
)
default
NULL
,
nextprivkey
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
)
)
TYPE
=
MyISAM
;
#
#
Table
structure
for
table
'widearea_recent'
#
...
...
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