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
3bdb37b4
Commit
3bdb37b4
authored
Nov 09, 2004
by
Leigh B. Stoller
Browse files
Fix stupid typos in last revision.
parent
465e94d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
3bdb37b4
...
...
@@ -157,8 +157,8 @@ CREATE TABLE deltas (
CREATE
TABLE
elabinelab_vlans
(
pid
varchar
(
12
)
NOT
NULL
default
''
,
eid
varchar
(
32
)
NOT
NULL
default
''
,
inner_id
int
(
11
)
unsigned
NOT
NULL
default
0
,
outer_id
int
(
11
)
unsigned
NOT
NULL
default
0
,
inner_id
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
outer_id
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
pid
,
eid
,
inner_id
)
)
TYPE
=
MyISAM
;
...
...
@@ -2027,7 +2027,7 @@ CREATE TABLE webnews (
date
datetime
default
NULL
,
author
varchar
(
32
)
default
NULL
,
body
text
,
archived
tinyint
(
1
)
default
'0'
,
archived
tinyint
(
1
)
NOT
NULL
default
'0'
,
archived_date
datetime
default
NULL
,
PRIMARY
KEY
(
msgid
),
KEY
date
(
date
)
...
...
sql/database-migrate.txt
View file @
3bdb37b4
...
...
@@ -2124,3 +2124,4 @@ last_net_act,last_cpu_act,last_ext_act);
alter table webnews add archived_date datetime default NULL \
after archived;
1.273: Fix errors in last revision; skip to next entry.
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