Skip to content
GitLab
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
8943e0e1
Commit
8943e0e1
authored
Jun 01, 2006
by
Leigh B. Stoller
Browse files
Not entirely sure what I was drinking when I made the last couple of
entries, but sheesh, they were screwed up! Hopefully fixed now.
parent
3610c077
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
8943e0e1
...
...
@@ -445,8 +445,7 @@ CREATE TABLE experiment_resources (
maxlinks
tinyint
(
3
)
unsigned
default
'0'
,
delay_capacity
tinyint
(
3
)
unsigned
default
NULL
,
batchmode
tinyint
(
1
)
unsigned
default
'0'
,
archive_tag
varchar
(
64
)
NOT
NULL
default
''
,
dpdbname
varchar
(
64
)
default
NULL
,
archive_tag
varchar
(
64
)
default
NULL
,
thumbnail
mediumblob
,
PRIMARY
KEY
(
idx
),
KEY
exptidx
(
exptidx
),
...
...
sql/database-migrate.txt
View file @
8943e0e1
...
...
@@ -3376,7 +3376,7 @@ last_net_act,last_cpu_act,last_ext_act);
corresponding spot in the archive.
alter table experiment_runs add \
archive_tag varchar(32) NULL after description;
archive_tag varchar(32)
default
NULL after description;
4.62:
4.63: Add a slot to the hold the name of optional per-experiment DB.
...
...
@@ -3388,10 +3388,11 @@ last_net_act,last_cpu_act,last_ext_act);
4.64: Fix archive tags to be proper size.
alter table experiment_resources change archive_tag \
archive_tag varchar(64)
NOT NULL
default
''
;
archive_tag varchar(64) default
NULL
;
alter table experiment_runs change archive_tag \
archive_tag varchar(64)
NOT NULL
default
''
;
archive_tag varchar(64) default
NULL
;
4.65: Minor fix; skip to next entry;
4.66: More fixes; skip to next entry;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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