Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lolo888
ISPConfig 3
Commits
759b5e3d
Commit
759b5e3d
authored
Aug 07, 2012
by
cfoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added template tables to sql
parent
2e8df115
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
1 deletion
+32
-1
install/sql/incremental/upd_0034.sql
install/sql/incremental/upd_0034.sql
+32
-1
No files found.
install/sql/incremental/upd_0034.sql
View file @
759b5e3d
...
...
@@ -65,6 +65,34 @@ CREATE TABLE IF NOT EXISTS `aps_settings` (
UNIQUE
KEY
`name`
(
`name`
)
)
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`
--
...
...
@@ -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'
,
''
);
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`
;
\ No newline at end of file
ALTER
TABLE
`client_template`
ADD
`limit_aps`
int
(
11
)
NOT
NULL
DEFAULT
'0'
AFTER
`limit_webdav_user`
;
-- 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
Markdown
is supported
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