You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
548 B
22 lines
548 B
9 years ago
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.4 on 2016-04-25 08:11
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations
|
||
|
import main.medialibrary.fields
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('medialibrary', '0002_mediaasset_simple_file'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='mediaasset',
|
||
|
name='original_file',
|
||
|
field=main.medialibrary.fields.MediaAssetField(upload_to=b'', verbose_name='original file'),
|
||
|
),
|
||
|
]
|