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-stable
Commits
0eb58f5d
Commit
0eb58f5d
authored
May 25, 2004
by
Leigh B. Stoller
Browse files
Convert use_ipassign from boolean (1).
parent
3ad1e7d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
0eb58f5d
...
...
@@ -288,7 +288,7 @@ CREATE TABLE experiments (
allowfixnode
tinyint
(
4
)
NOT
NULL
default
'1'
,
jail_osname
varchar
(
20
)
default
NULL
,
delay_osname
varchar
(
20
)
default
NULL
,
use_ipassign
tinyint
(
1
)
NOT
NULL
default
'0'
,
use_ipassign
tinyint
(
4
)
NOT
NULL
default
'0'
,
ipassign_args
varchar
(
255
)
default
NULL
,
linktest_level
tinyint
(
4
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
eid
,
pid
),
...
...
sql/database-migrate.txt
View file @
0eb58f5d
...
...
@@ -1530,3 +1530,10 @@ last_net_act,last_cpu_act,last_ext_act);
alter table node_types add trivlink_maxspeed int(11) unsigned \
NOT NULL default '0' after simnode_capacity;
1.245: Change use_ipassign in experiments table to more than a
boolean:
alter table experiments change use_ipassign \
use_ipassign tinyint(4) NOT NULL default '0';
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