Commit ba6ab1fd authored by Michal Čihař's avatar Michal Čihař

Migrate languges to new meta opts

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 85d5ace6
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('lang', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='language',
options={'ordering': ['name'], 'verbose_name': 'Language', 'verbose_name_plural': 'Languages'},
),
]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment