mirror of
https://github.com/ConjureETS/site-2015.git
synced 2026-03-24 04:21:23 +00:00
21 lines
466 B
Python
21 lines
466 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('member', '0003_auto_20150721_1829'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='member',
|
|
name='photo',
|
|
field=models.ImageField(null=True, upload_to=b'members', blank=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|