Migration for the nomcom 'public_key' field change to a settings-agnostic FileStorage.
- Legacy-Id: 10301
This commit is contained in:
parent
aa2c6e1956
commit
97f7159a48
21
ietf/nomcom/migrations/0004_auto_20151027_0829.py
Normal file
21
ietf/nomcom/migrations/0004_auto_20151027_0829.py
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
import ietf.nomcom.models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('nomcom', '0003_nomination_share_nominator'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='nomcom',
|
||||||
|
name='public_key',
|
||||||
|
field=models.FileField(storage=ietf.nomcom.models.NoLocationMigrationFileSystemStorage(location=None), null=True, upload_to=ietf.nomcom.models.upload_path_handler, blank=True),
|
||||||
|
preserve_default=True,
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue