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
d60bf15d
Commit
d60bf15d
authored
Apr 28, 2003
by
Leigh B. Stoller
Browse files
Add testbed_stats table! I commented it very nicely in db-migrate.txt,
but forgot to put in the real file.
parent
bf2ad9b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
d60bf15d
...
@@ -1101,6 +1101,19 @@ CREATE TABLE switch_stacks (
...
@@ -1101,6 +1101,19 @@ CREATE TABLE switch_stacks (
PRIMARY
KEY
(
node_id
)
PRIMARY
KEY
(
node_id
)
)
TYPE
=
MyISAM
;
)
TYPE
=
MyISAM
;
--
-- Table structure for table 'testbed_stats'
--
CREATE
TABLE
testbed_stats
(
idx
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
tstamp
datetime
default
NULL
,
exptidx
int
(
10
)
unsigned
NOT
NULL
default
'0'
,
action
varchar
(
16
)
NOT
NULL
default
''
,
exitcode
tinyint
(
3
)
unsigned
default
'0'
,
PRIMARY
KEY
(
idx
)
)
TYPE
=
MyISAM
;
--
--
-- Table structure for table 'testsuite_preentables'
-- Table structure for table 'testsuite_preentables'
--
--
...
...
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