a54bc1dda1
* redo migrations * merge and new version * remove serialize (#25) * bump Version and add more readme
21 lines
463 B
Python
21 lines
463 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.4 on 2017-01-20 20:51
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dbfilestorage', '0002_add_filehash_rename_files'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='dbfile',
|
|
name='name',
|
|
field=models.CharField(max_length=100),
|
|
),
|
|
]
|