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
c885d089
Commit
c885d089
authored
Jun 05, 2008
by
daniel
Browse files
No commit message
No commit message
parent
dbb5b87b
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/ispconfig3.sql
View file @
c885d089
...
...
@@ -16,6 +16,8 @@
-- Tabellenstruktur fr Tabelle `client`
--
SET
FOREIGN_KEY_CHECKS
=
0
;
CREATE
TABLE
`client`
(
`client_id`
bigint
(
20
)
NOT
NULL
auto_increment
,
`sys_userid`
int
(
11
)
NOT
NULL
default
'0'
,
...
...
@@ -158,8 +160,12 @@ CREATE TABLE `ftp_user` (
`dl_ratio`
int
(
11
)
NOT
NULL
default
'-1'
,
`ul_bandwidth`
int
(
11
)
NOT
NULL
default
'-1'
,
`dl_bandwidth`
int
(
11
)
NOT
NULL
default
'-1'
,
PRIMARY
KEY
(
`ftp_user_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1
AUTO_INCREMENT
=
1
;
PRIMARY
KEY
(
`ftp_user_id`
),
KEY
`active`
(
`active`
),
KEY
`server_id`
(
`server_id`
),
KEY
`username`
(
`username`
),
KEY
`quota_files`
(
`quota_files`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
1
DEFAULT
CHARSET
=
latin1
;
--
-- Daten fr Tabelle `ftp_user`
...
...
@@ -874,3 +880,5 @@ CREATE TABLE `attempts_login` (
`times`
tinyint
(
1
)
NOT
NULL
default
'1'
,
`login_time`
timestamp
NOT
NULL
default
'0000-00-00 00:00:00'
);
SET
FOREIGN_KEY_CHECKS
=
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