Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Kraljič
ISPConfig 3
Commits
6d6a37b9
Commit
6d6a37b9
authored
11 years ago
by
Till Brehm
Browse files
Options
Downloads
Patches
Plain Diff
Updated incremental svn files.
parent
4ad68490
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
install/sql/incremental/upd_0060.sql
+8
-14
8 additions, 14 deletions
install/sql/incremental/upd_0060.sql
install/sql/incremental/upd_0061.sql
+1
-0
1 addition, 0 deletions
install/sql/incremental/upd_0061.sql
install/sql/incremental/upd_0062.sql
+14
-0
14 additions, 0 deletions
install/sql/incremental/upd_0062.sql
with
23 additions
and
14 deletions
install/sql/incremental/upd_0060.sql
+
8
−
14
View file @
6d6a37b9
CREATE
TABLE
`mail_backup`
(
`backup_id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`server_id`
int
(
10
)
unsigned
NOT
NULL
,
`parent_domain_id`
int
(
10
)
unsigned
NOT
NULL
,
`mailuser_id`
int
(
10
)
unsigned
NOT
NULL
,
`backup_mode`
varchar
(
64
)
NOT
NULL
DEFAULT
''
,
`tstamp`
int
(
10
)
unsigned
NOT
NULL
,
`filename`
varchar
(
255
)
NOT
NULL
,
`filesize`
VARCHAR
(
10
)
NOT
NULL
,
PRIMARY
KEY
(
`backup_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
ALTER
TABLE
`mail_user`
ADD
`backup_interval`
VARCHAR
(
255
)
NOT
NULL
;
ALTER
TABLE
`mail_user`
ADD
`backup_copies`
INT
NOT
NULL
DEFAULT
'1'
;
ALTER
TABLE
`client`
ADD
`customer_no_template`
VARCHAR
(
255
)
NULL
DEFAULT
'C[CUSTOMER_NO]'
AFTER
`ssh_rsa`
,
ADD
`customer_no_start`
INT
NOT
NULL
DEFAULT
'1'
AFTER
`customer_no_template`
,
ADD
`customer_no_counter`
INT
NOT
NULL
DEFAULT
'0'
AFTER
`customer_no_start`
,
ADD
`added_date`
DATE
NOT
NULL
default
'0000-00-00'
AFTER
`customer_no_counter`
,
ADD
`added_by`
VARCHAR
(
255
)
NULL
AFTER
`added_date`
;
ALTER
TABLE
`web_domain`
ADD
`added_date`
DATE
NOT
NULL
default
'0000-00-00'
AFTER
`rewrite_rules`
,
ADD
`added_by`
VARCHAR
(
255
)
NULL
AFTER
`added_date`
;
ALTER
TABLE
`sys_session`
ADD
`permanent`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`last_updated`
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
install/sql/incremental/upd_0061.sql
0 → 100644
+
1
−
0
View file @
6d6a37b9
ALTER
TABLE
`web_domain`
ADD
`backup_excludes`
MEDIUMTEXT
NULL
AFTER
`backup_copies`
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
install/sql/incremental/upd_0062.sql
0 → 100644
+
14
−
0
View file @
6d6a37b9
CREATE
TABLE
`mail_backup`
(
`backup_id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`server_id`
int
(
10
)
unsigned
NOT
NULL
,
`parent_domain_id`
int
(
10
)
unsigned
NOT
NULL
,
`mailuser_id`
int
(
10
)
unsigned
NOT
NULL
,
`backup_mode`
varchar
(
64
)
NOT
NULL
DEFAULT
''
,
`tstamp`
int
(
10
)
unsigned
NOT
NULL
,
`filename`
varchar
(
255
)
NOT
NULL
,
`filesize`
VARCHAR
(
10
)
NOT
NULL
,
PRIMARY
KEY
(
`backup_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
ALTER
TABLE
`mail_user`
ADD
`backup_interval`
VARCHAR
(
255
)
NOT
NULL
;
ALTER
TABLE
`mail_user`
ADD
`backup_copies`
INT
NOT
NULL
DEFAULT
'1'
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment