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
e3251dd4
Commit
e3251dd4
authored
Mar 24, 2008
by
Leigh B. Stoller
Browse files
Fix error in previous schema change.
parent
fc411104
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
e3251dd4
...
...
@@ -239,7 +239,7 @@ CREATE TABLE `current_reloads` (
DROP
TABLE
IF
EXISTS
`daily_stats`
;
CREATE
TABLE
`daily_stats`
(
`theday`
date
default
NULL
,
`theday`
date
NOT
NULL
default
'0000-00-00'
,
`exptstart_count`
int
(
11
)
unsigned
default
'0'
,
`exptpreload_count`
int
(
11
)
unsigned
default
'0'
,
`exptswapin_count`
int
(
11
)
unsigned
default
'0'
,
...
...
sql/database-migrate.txt
View file @
e3251dd4
...
...
@@ -4398,7 +4398,7 @@ last_net_act,last_cpu_act,last_ext_act);
4.144: Add daily stats for generating reports and graphs?
CREATE TABLE `daily_stats` (
`theday` date
default NULL
,
`theday` date
NOT NULL default '0000-00-00'
,
`exptstart_count` int(11) unsigned default '0',
`exptpreload_count` int(11) unsigned default '0',
`exptswapin_count` int(11) unsigned default '0',
...
...
@@ -4419,4 +4419,4 @@ last_net_act,last_cpu_act,last_ext_act);
update experiment_stats set last_activity=created
where last_activity is NULL;
4.145: Fix error in previous revision; skip to next entry;
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