59207eb0c9
So django keeps strict synchronization between its code and migrations so that it can help generating new migrations. These are the additional suggested migrations. A lot of these are a null effect, some are things like transforming an unsigned integer to a signed integer. So not super urgent on a small scale, but worth doing to keep django happy.
25 lines
692 B
Python
25 lines
692 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.3 on 2017-07-02 12:33
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('registrasion', '0005_auto_20160905_0945'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='category',
|
|
name='order',
|
|
field=models.PositiveIntegerField(db_index=True, verbose_name='Display order'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='product',
|
|
name='order',
|
|
field=models.PositiveIntegerField(db_index=True, verbose_name='Display order'),
|
|
),
|
|
]
|