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
2588d99d
Commit
2588d99d
authored
Oct 11, 2005
by
Leigh B. Stoller
Browse files
Increase length of auxdata in the global_policies table.
parent
f28bd1cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
2588d99d
...
...
@@ -498,7 +498,7 @@ CREATE TABLE foreign_keys (
CREATE
TABLE
global_policies
(
policy
varchar
(
32
)
NOT
NULL
default
''
,
auxdata
varchar
(
64
)
NOT
NULL
default
''
,
auxdata
varchar
(
128
)
NOT
NULL
default
''
,
test
varchar
(
32
)
NOT
NULL
default
''
,
count
int
(
10
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
policy
,
auxdata
)
...
...
sql/database-migrate.txt
View file @
2588d99d
...
...
@@ -2824,3 +2824,8 @@ last_net_act,last_cpu_act,last_ext_act);
alter table node_types change disktype \
disktype enum('ad','da','ar','amrd') default NULL;
4.12: Increase length of auxdata in the global_policies table.
alter table global_policies change auxdata \
auxdata varchar(128) NOT NULL default '';
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