Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
lolo888
ISPConfig 3
Commits
d21718c9
Commit
d21718c9
authored
Aug 17, 2007
by
tbrehm
Browse files
Added definition for table mail_traffic to SQL dump.
parent
f17e5b0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/ispconfig3.sql
View file @
d21718c9
...
...
@@ -329,6 +329,25 @@ CREATE TABLE `mail_mailman_domain` (
-- Daten fr Tabelle `mail_mailman_domain`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur fr Tabelle `mail_traffic`
--
CREATE
TABLE
`mail_traffic`
(
`traffic_id`
int
(
10
)
unsigned
NOT
NULL
auto_increment
,
`mailuser_id`
int
(
10
)
unsigned
NOT
NULL
,
`month`
char
(
7
)
NOT
NULL
,
`traffic`
bigint
(
20
)
unsigned
NOT
NULL
,
PRIMARY
KEY
(
`traffic_id`
),
KEY
`mailuser_id`
(
`mailuser_id`
,
`month`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
AUTO_INCREMENT
=
2
;
--
-- Daten fr Tabelle `mail_traffic`
--
-- --------------------------------------------------------
...
...
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