39949562c1
Closes #62
22 lines
568 B
Python
22 lines
568 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-05-26 15:47
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('files', '0003_auto_20180526_1547'),
|
|
('map', '0064_auto_20180526_1536'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='casestudy',
|
|
name='images',
|
|
field=models.ManyToManyField(blank=True, related_name='image_for', to='files.ImageFile', verbose_name='Images'),
|
|
),
|
|
]
|