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
Zvonimir
ISPConfig 3
Commits
7b699b69
Commit
7b699b69
authored
Feb 18, 2014
by
Marius Cramer
Browse files
Copied new sql definitions from master
parent
f266c309
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0069.sql
0 → 100644
View file @
7b699b69
ALTER
TABLE
`cron`
ADD
`log`
enum
(
'n'
,
'y'
)
NOT
NULL
default
'n'
AFTER
`run_wday`
;
install/sql/ispconfig3.sql
View file @
7b699b69
...
...
@@ -402,6 +402,7 @@ CREATE TABLE `cron` (
`run_mday`
varchar
(
100
)
NULL
,
`run_month`
varchar
(
100
)
NULL
,
`run_wday`
varchar
(
100
)
NULL
,
`log`
enum
(
'n'
,
'y'
)
NOT
NULL
default
'n'
,
`active`
enum
(
'n'
,
'y'
)
NOT
NULL
default
'y'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
...
...
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