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-stable
Commits
818739da
Commit
818739da
authored
Jan 07, 2005
by
Leigh B. Stoller
Browse files
Fix eid length in virt_vtypes table.
parent
ff753403
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
818739da
...
...
@@ -1999,7 +1999,7 @@ CREATE TABLE virt_trafgens (
CREATE
TABLE
virt_vtypes
(
pid
varchar
(
12
)
NOT
NULL
default
''
,
eid
varchar
(
1
2
)
NOT
NULL
default
''
,
eid
varchar
(
3
2
)
NOT
NULL
default
''
,
name
varchar
(
12
)
NOT
NULL
default
''
,
weight
float
(
7
,
5
)
NOT
NULL
default
'0.00000'
,
members
text
...
...
sql/database-migrate.txt
View file @
818739da
...
...
@@ -2260,4 +2260,7 @@ last_net_act,last_cpu_act,last_ext_act);
PRIMARY KEY (node_id)
) TYPE=MyISAM;
\ No newline at end of file
1.296: Fix virt_vtypes table.
alter table virt_vtypes change eid eid varchar(32) NOT NULL default '';
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