Skip to content

Commit c3d8a84

Browse files
author
Till Brehm
committed
Updated incremental svn files.
1 parent 3ba5648 commit c3d8a84

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
CREATE TABLE `mail_backup` (
2+
`backup_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
3+
`server_id` int(10) unsigned NOT NULL,
4+
`parent_domain_id` int(10) unsigned NOT NULL,
5+
`mailuser_id` int(10) unsigned NOT NULL,
6+
`backup_mode` varchar(64) NOT NULL DEFAULT '',
7+
`tstamp` int(10) unsigned NOT NULL,
8+
`filename` varchar(255) NOT NULL,
9+
`filesize` VARCHAR(10) NOT NULL,
10+
PRIMARY KEY (`backup_id`)
11+
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
12+
13+
ALTER TABLE `mail_user` ADD `backup_interval` VARCHAR( 255 ) NOT NULL ;
14+
ALTER TABLE `mail_user` ADD `backup_copies` INT NOT NULL DEFAULT '1';

interface/lib/config.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@
4444

4545
//** Application
4646
define('ISPC_APP_TITLE', 'ISPConfig');
47-
define('ISPC_APP_VERSION', '3.0.2');
47+
define('ISPC_APP_VERSION', '3.0.5.3');
4848
define('DEVSYSTEM', 0);
4949

5050

5151
//** Database
5252
$conf['db_type'] = 'mysql';
5353
$conf['db_host'] = 'localhost';
54-
$conf['db_database'] = 'ispconfig3';
54+
$conf['db_database'] = 'ispconfig3_305';
5555
$conf['db_user'] = 'root';
5656
$conf['db_password'] = '';
5757
$conf['db_charset'] = 'utf8'; // same charset as html-charset - (HTML --> MYSQL: "utf-8" --> "utf8", "iso-8859-1" --> "latin1")

0 commit comments

Comments
 (0)