Skip to content

Commit

Permalink
add migration for f510713
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Dec 29, 2015
1 parent ab466a5 commit 58f7237
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions nsupdate/main/migrations/0010_auto_20151229_1717.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('main', '0009_merge'),
]

operations = [
migrations.AlterModelOptions(
name='domain',
options={'ordering': ('name',), 'verbose_name': 'domain', 'verbose_name_plural': 'domains'},
),
migrations.AlterModelOptions(
name='host',
options={'ordering': ('domain', 'name'), 'verbose_name': 'host', 'verbose_name_plural': 'hosts'},
),
migrations.AlterModelOptions(
name='relatedhost',
options={'ordering': ('main_host', 'name'), 'verbose_name': 'related host', 'verbose_name_plural': 'related hosts'},
),
]

0 comments on commit 58f7237

Please sign in to comment.