Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
9cf2c25a
Commit
9cf2c25a
authored
Oct 28, 2011
by
latham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
start adding SPF by adding enum in table
parent
f3e79ae3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
install/sql/incremental/upd_0027.sql
install/sql/incremental/upd_0027.sql
+1
-0
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+2
-2
No files found.
install/sql/incremental/upd_0027.sql
0 → 100644
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 @
9cf2c25a
...
...
@@ -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'
,
'SRV'
,
'TXT'
)
default
NULL
,
`type`
enum
(
'A'
,
'AAAA'
,
'ALIAS'
,
'CNAME'
,
'HINFO'
,
'MX'
,
'NAPTR'
,
'NS'
,
'PTR'
,
'RP'
,
'
SPF'
,
'
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
;
\ No newline at end of file
SET
FOREIGN_KEY_CHECKS
=
1
;
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