Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
fd72ba47
Commit
fd72ba47
authored
Oct 31, 2011
by
tbrehm
Browse files
Reverted changes to add SPF type in dns_rr table to comply with DNS specification.
parent
9cf2c25a
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0027.sql
deleted
100644 → 0
View file @
9cf2c25a
ALTER
TABLE
`dns_rr`
MODIFY
COLUMN
`type`
enum
(
'A'
,
'AAAA'
,
'ALIAS'
,
'CNAME'
,
'HINFO'
,
'MX'
,
'NAPTR'
,
'NS'
,
'PTR'
,
'RP'
,
'SPF'
,
'SRV'
,
'TXT'
)
default
NULL
;
install/sql/ispconfig3.sql
View file @
fd72ba47
...
...
@@ -254,7 +254,7 @@ CREATE TABLE `dns_rr` (
`server_id`
int
(
11
)
NOT
NULL
default
'1'
,
`zone`
int
(
11
)
unsigned
NOT
NULL
,
`name`
varchar
(
64
)
NOT
NULL
,
`type`
enum
(
'A'
,
'AAAA'
,
'ALIAS'
,
'CNAME'
,
'HINFO'
,
'MX'
,
'NAPTR'
,
'NS'
,
'PTR'
,
'RP'
,
'
SPF'
,
'
SRV'
,
'TXT'
)
default
NULL
,
`type`
enum
(
'A'
,
'AAAA'
,
'ALIAS'
,
'CNAME'
,
'HINFO'
,
'MX'
,
'NAPTR'
,
'NS'
,
'PTR'
,
'RP'
,
'SRV'
,
'TXT'
)
default
NULL
,
`data`
varchar
(
255
)
NOT
NULL
,
`aux`
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
`ttl`
int
(
11
)
unsigned
NOT
NULL
default
'86400'
,
...
...
@@ -1920,4 +1920,4 @@ INSERT INTO `sys_user` (`userid`, `sys_userid`, `sys_groupid`, `sys_perm_user`,
INSERT
INTO
sys_config
VALUES
(
'1'
,
'db'
,
'db_version'
,
'3.0.4'
);
SET
FOREIGN_KEY_CHECKS
=
1
;
SET
FOREIGN_KEY_CHECKS
=
1
;
\ 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