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
a8633ebd
Commit
a8633ebd
authored
Sep 12, 2002
by
Leigh B. Stoller
Browse files
Add idx field; a always increasing experiment ID. I expect we will be
dead before it flows 32 bits.
parent
7e923184
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
a8633ebd
...
...
@@ -202,7 +202,9 @@ CREATE TABLE experiments (
swap_requests
tinyint
(
4
)
NOT
NULL
default
'0'
,
last_swap_req
datetime
default
NULL
,
idle_ignore
tinyint
(
4
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
eid
,
pid
)
idx
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
PRIMARY
KEY
(
eid
,
pid
),
KEY
idx
(
idx
)
)
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