Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
828b56fc
Commit
828b56fc
authored
Aug 07, 2003
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add issubnode to node_types table.
parent
c12ed4ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
sql/database-create.sql
sql/database-create.sql
+1
-0
sql/database-migrate.txt
sql/database-migrate.txt
+5
-0
No files found.
sql/database-create.sql
View file @
828b56fc
...
...
@@ -716,6 +716,7 @@ CREATE TABLE node_types (
pxe_boot_path
text
,
isvirtnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
isremotenode
tinyint
(
4
)
NOT
NULL
default
'0'
,
issubnode
tinyint
(
4
)
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
type
)
)
TYPE
=
MyISAM
;
...
...
sql/database-migrate.txt
View file @
828b56fc
...
...
@@ -842,3 +842,8 @@ last_net_act,last_cpu_act,last_ext_act);
alter table experiments add sync_server varchar(32) \
default NULL after idle_ignore;
1.171: Add issubnode slot for dealing with IXP type things.
alter table node_types add issubnode tinyint(4) NOT NULL default '0' \
after isremotenode;
Write
Preview
Markdown
is supported
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