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
b6d14520
Commit
b6d14520
authored
Dec 04, 2002
by
Leigh B. Stoller
Browse files
Fix up varchar sizes in osidtoimageid table; they were shorter than
corresponding slots in os_info and images, causing truncation.
parent
c9c421ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
b6d14520
...
...
@@ -677,9 +677,9 @@ CREATE TABLE os_info (
#
CREATE
TABLE
osidtoimageid
(
osid
varchar
(
3
0
)
NOT
NULL
default
''
,
osid
varchar
(
3
5
)
NOT
NULL
default
''
,
type
varchar
(
30
)
NOT
NULL
default
''
,
imageid
varchar
(
30
)
NOT
NULL
default
''
,
imageid
varchar
(
45
)
NOT
NULL
default
''
,
PRIMARY
KEY
(
osid
,
type
)
)
TYPE
=
MyISAM
;
...
...
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