Remove __future__ imports -- the future is here!
[mygpo.git] / mygpo / podcasts / migrations / 0031_podcast_max_episode_order.py
blobc9129fc306b59070e61a7b26b01eeda2f9b8c196
1 # -*- coding: utf-8 -*-
2 from django.db import models, migrations
5 class Migration(migrations.Migration):
7 dependencies = [
8 ('podcasts', '0030_ordered_episode'),
11 operations = [
12 migrations.AddField(
13 model_name='podcast',
14 name='max_episode_order',
15 field=models.PositiveIntegerField(default=None, null=True),
16 preserve_default=True,