Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lolo888
ISPConfig 3
Commits
759b5e3d
Commit
759b5e3d
authored
Aug 07, 2012
by
cfoe
Browse files
added template tables to sql
parent
2e8df115
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0034.sql
View file @
759b5e3d
...
@@ -65,6 +65,34 @@ CREATE TABLE IF NOT EXISTS `aps_settings` (
...
@@ -65,6 +65,34 @@ CREATE TABLE IF NOT EXISTS `aps_settings` (
UNIQUE
KEY
`name`
(
`name`
)
UNIQUE
KEY
`name`
(
`name`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `tpl_default`
--
CREATE
TABLE
IF
NOT
EXISTS
`tpl_default`
(
`var_id`
int
(
11
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`username`
varchar
(
64
)
NOT
NULL
,
`logo_url`
varchar
(
255
)
NOT
NULL
,
PRIMARY
KEY
(
`var_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `tpl_default-v2`
--
CREATE
TABLE
IF
NOT
EXISTS
`tpl_default-v2`
(
`var_id`
int
(
11
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`username`
varchar
(
64
)
NOT
NULL
,
`logo_url`
varchar
(
255
)
NOT
NULL
,
PRIMARY
KEY
(
`var_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
-- --------------------------------------------------------
--
--
-- Dumping data for table `aps_settings`
-- Dumping data for table `aps_settings`
--
--
...
@@ -74,4 +102,7 @@ INSERT INTO `aps_settings` (`id`, `name`, `value`) VALUES(2, 'ignore-php-configu
...
@@ -74,4 +102,7 @@ INSERT INTO `aps_settings` (`id`, `name`, `value`) VALUES(2, 'ignore-php-configu
INSERT
INTO
`aps_settings`
(
`id`
,
`name`
,
`value`
)
VALUES
(
3
,
'ignore-webserver-module'
,
''
);
INSERT
INTO
`aps_settings`
(
`id`
,
`name`
,
`value`
)
VALUES
(
3
,
'ignore-webserver-module'
,
''
);
ALTER
TABLE
`client`
ADD
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'0'
AFTER
`limit_webdav_user`
;
ALTER
TABLE
`client`
ADD
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'0'
AFTER
`limit_webdav_user`
;
ALTER
TABLE
`client_template`
ADD
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'0'
AFTER
`limit_webdav_user`
;
ALTER
TABLE
`client_template`
ADD
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'0'
AFTER
`limit_webdav_user`
;
\ No newline at end of file
-- INSERT INTO `tpl_default` (`var_id`, `username`, `logo_url`) VALUES('', 'global', 'themes/default/images/header_logo.png');
-- INSERT INTO `tpl_default-2` (`var_id`, `username`, `logo_url`) VALUES('', 'global', 'themes/default-v2/images/header_logo.png');
\ No newline at end of file
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