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
5229a361
Commit
5229a361
authored
Mar 18, 2003
by
Mac Newbold
Browse files
Add node_activity table for new slothd stuff.
parent
bc27edc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
5229a361
...
...
@@ -524,6 +524,19 @@ CREATE TABLE nextfreenode (
PRIMARY
KEY
(
nodetype
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table 'node_activity'
--
CREATE
TABLE
node_activity
(
node_id
varchar
(
10
)
NOT
NULL
default
''
,
last_tty_act
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
last_net_act
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
last_cpu_act
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
last_ext_act
datetime
NOT
NULL
default
'0000-00-00 00:00:00'
,
PRIMARY
KEY
(
node_id
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table 'node_idlestats'
--
...
...
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