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
1a564e6d
Commit
1a564e6d
authored
Jul 20, 2006
by
Leigh B. Stoller
Browse files
Minor change to previous revision; need the right number of 0s after
the decimal point in decimal slots.
parent
5dfa4a47
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
1a564e6d
...
...
@@ -2912,7 +2912,7 @@ CREATE TABLE virt_vtypes (
CREATE
TABLE
vis_graphs
(
pid
varchar
(
12
)
NOT
NULL
default
''
,
eid
varchar
(
32
)
NOT
NULL
default
''
,
zoom
decimal
(
8
,
3
)
NOT
NULL
default
'0'
,
zoom
decimal
(
8
,
3
)
NOT
NULL
default
'0
.000
'
,
detail
tinyint
(
2
)
NOT
NULL
default
'0'
,
image
mediumblob
,
PRIMARY
KEY
(
pid
,
eid
)
...
...
sql/database-migrate.txt
View file @
1a564e6d
...
...
@@ -3556,5 +3556,6 @@ last_net_act,last_cpu_act,last_ext_act);
**** Skip this if you just did 4.41 above.
alter table experiment_templates add \
active tinyint(1) NOT NULL default '0';
active tinyint(1) NOT NULL default '0
.000
';
4.76: Change to previous revision; 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