django-dbfilestorage/dbfilestorage/migrations/0010_auto_20170206_1954.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
435 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2017-02-06 19:54
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('dbfilestorage', '0009_auto_20170206_1954'),
]
operations = [
migrations.RenameField(
model_name='dbfile',
old_name='primary_key',
new_name='id',
),
]