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
6f8b8f2b
Commit
6f8b8f2b
authored
Apr 24, 2003
by
Robert Ricci
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Oops, commited the wrong version of database-create.sql - this now
has the correct new_ tables in it.
parent
b471dcfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
sql/database-create.sql
sql/database-create.sql
+5
-5
No files found.
sql/database-create.sql
View file @
6f8b8f2b
...
...
@@ -2,7 +2,7 @@
--
-- Host: localhost Database: tbdb
---------------------------------------------------------
-- Server version 3.23.5
2
-log
-- Server version 3.23.5
4
-log
--
-- Table structure for table 'cdroms'
...
...
@@ -486,11 +486,11 @@ CREATE TABLE mode_transitions (
--
CREATE
TABLE
new_interfaces
(
node_id
varchar
(
1
0
)
NOT
NULL
default
''
,
new_
node_id
int
(
1
1
)
NOT
NULL
default
'
0
'
,
iface
varchar
(
10
)
NOT
NULL
default
''
,
mac
varchar
(
12
)
NOT
NULL
default
''
,
interface_type
varchar
(
15
)
default
NULL
,
PRIMARY
KEY
(
node_id
,
iface
)
PRIMARY
KEY
(
new_
node_id
,
iface
)
)
TYPE
=
MyISAM
;
--
...
...
@@ -498,13 +498,13 @@ CREATE TABLE new_interfaces (
--
CREATE
TABLE
new_nodes
(
uniqu
e_id
int
(
11
)
NOT
NULL
auto_increment
,
new_nod
e_id
int
(
11
)
NOT
NULL
auto_increment
,
node_id
varchar
(
10
)
NOT
NULL
default
''
,
type
varchar
(
30
)
default
NULL
,
IP
varchar
(
15
)
default
NULL
,
dmesg
text
,
created
timestamp
(
14
)
NOT
NULL
,
PRIMARY
KEY
(
uniqu
e_id
)
PRIMARY
KEY
(
new_nod
e_id
)
)
TYPE
=
MyISAM
;
--
...
...
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