~dholbach/developer-ubuntu-com/add-toc-md-ext

« back to all changes in this revision

Viewing changes to store_data/migrations/0002_make_screenshot_optional.py

Store data admin improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
from __future__ import unicode_literals
 
3
 
 
4
from django.db import migrations, models
 
5
 
 
6
 
 
7
class Migration(migrations.Migration):
 
8
 
 
9
    dependencies = [
 
10
        ('store_data', '0001_initial'),
 
11
    ]
 
12
 
 
13
    operations = [
 
14
        migrations.AlterField(
 
15
            model_name='gadgetsnap',
 
16
            name='screenshot_url',
 
17
            field=models.ManyToManyField(to='store_data.ScreenshotURL', blank=True),
 
18
        ),
 
19
    ]