Ticket #27424: 0002_remove_content_type_name.py

File 0002_remove_content_type_name.py, 524 bytes (added by Juan Borda, 8 years ago)

the newly generated migration file

Line 
1# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import migrations, models
5
6
7class Migration(migrations.Migration):
8
9 dependencies = [
10 ('contenttypes', '0001_initial'),
11 ]
12
13 operations = [
14 migrations.AlterModelOptions(
15 name='contenttype',
16 options={'verbose_name': 'content type', 'verbose_name_plural': 'content types'},
17 ),
18 migrations.RemoveField(
19 model_name='contenttype',
20 name='name',
21 ),
22 ]
Back to Top