django-dbfilestorage/dbfilestorage/migrations/0011_auto_20170206_1956.py
Tyrel Souza 8f811db7c8 Change pk (#35)
* add new primary_key field.

* Add new field, populate data, change to being pk, change name, double length of name field, and set it to unique

* change version, and add new migration

* bump down the size, 767/4 = 191

* update readme

* remove models.py comment
2017-02-06 15:31:40 -05:00

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),
),
]