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
Guilherme Filippo
ISPConfig 3
Commits
d155ef17
Commit
d155ef17
authored
Jul 09, 2008
by
tbrehm
Browse files
Added Indexes in table mail_user and mail_domain
parent
473c5b9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/ispconfig3.sql
View file @
d155ef17
...
...
@@ -265,7 +265,8 @@ CREATE TABLE `mail_domain` (
`domain`
varchar
(
255
)
NOT
NULL
default
''
,
`active`
enum
(
'y'
,
'n'
)
NOT
NULL
,
PRIMARY
KEY
(
`domain_id`
),
KEY
`server_id`
(
`server_id`
,
`domain`
)
KEY
`server_id`
(
`server_id`
,
`domain`
),
KEY
`domain_active`
(
`domain`
,
`active`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
AUTO_INCREMENT
=
1
;
--
...
...
@@ -448,7 +449,8 @@ CREATE TABLE `mail_user` (
`postfix`
enum
(
'y'
,
'n'
)
NOT
NULL
,
`access`
enum
(
'y'
,
'n'
)
NOT
NULL
,
PRIMARY
KEY
(
`mailuser_id`
),
KEY
`server_id`
(
`server_id`
,
`email`
)
KEY
`server_id`
(
`server_id`
,
`email`
),
KEY
`email_access`
(
`email`
,
`access`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
AUTO_INCREMENT
=
1
;
--
...
...
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