21 lines
469 B
Python
21 lines
469 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.4 on 2017-02-06 19:56
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dbfilestorage', '0010_auto_20170206_1954'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='dbfile',
|
||
|
name='name',
|
||
|
field=models.CharField(max_length=190, unique=True),
|
||
|
),
|
||
|
]
|