mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
include missing migration
This commit is contained in:
parent
440d9c2be2
commit
3dbc96bf36
1 changed files with 20 additions and 0 deletions
20
categories/migrations/0004_auto_20200517_1832.py
Normal file
20
categories/migrations/0004_auto_20200517_1832.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Generated by Django 3.0.6 on 2020-05-17 18:32
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contenttypes', '0002_remove_content_type_name'),
|
||||
('categories', '0003_auto_20200306_1050'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='categoryrelation',
|
||||
name='content_type',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType', verbose_name='content type'),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue