mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
Added a missing migration
This commit is contained in:
parent
97165a26ad
commit
d5bec42a09
1 changed files with 27 additions and 0 deletions
27
categories/migrations/0002_auto_20170217_1111.py
Normal file
27
categories/migrations/0002_auto_20170217_1111.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-02-17 11:11
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.manager
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('categories', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelManagers(
|
||||
name='category',
|
||||
managers=[
|
||||
('tree', django.db.models.manager.Manager()),
|
||||
],
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='categoryrelation',
|
||||
name='relation_type',
|
||||
field=models.CharField(blank=True, help_text="A generic text field to tag a relation, like 'leadphoto'.", max_length=200, null=True, verbose_name='relation type'),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue