Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
re2o
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
1
Merge Requests
1
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
Nounous
re2o
Commits
7f6bc6c2
Commit
7f6bc6c2
authored
Jun 25, 2018
by
Charlie Jacomme
Committed by
Gabriel Detraz
Aug 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
migrations for dnssec reverse
parent
029a83bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
0 deletions
+58
-0
machines/migrations/0089_auto_20180625_1700.py
machines/migrations/0089_auto_20180625_1700.py
+25
-0
machines/migrations/0090_auto_20180625_1706.py
machines/migrations/0090_auto_20180625_1706.py
+33
-0
No files found.
machines/migrations/0089_auto_20180625_1700.py
0 → 100644
View file @
7f6bc6c2
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-06-25 15:00
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'machines'
,
'0088_dname'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'extension'
,
name
=
'dnssec_reverse_v4'
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
'Activer DNSSEC sur le reverse DNS IPv4'
),
),
migrations
.
AddField
(
model_name
=
'extension'
,
name
=
'dnssec_reverse_v6'
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
'Activer DNSSEC sur le reverse DNS IPv6'
),
),
]
machines/migrations/0090_auto_20180625_1706.py
0 → 100644
View file @
7f6bc6c2
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-06-25 15:06
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'machines'
,
'0089_auto_20180625_1700'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'extension'
,
name
=
'dnssec_reverse_v4'
,
),
migrations
.
RemoveField
(
model_name
=
'extension'
,
name
=
'dnssec_reverse_v6'
,
),
migrations
.
AddField
(
model_name
=
'iptype'
,
name
=
'dnssec_reverse_v4'
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
'Activer DNSSEC sur le reverse DNS IPv4'
),
),
migrations
.
AddField
(
model_name
=
'iptype'
,
name
=
'dnssec_reverse_v6'
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
'Activer DNSSEC sur le reverse DNS IPv6'
),
),
]
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