Merge pull request #155 from cccaballero/master

include missing migration
This commit is contained in:
Brent O'Connor 2020-05-18 16:14:21 -05:00 committed by GitHub
commit c1e1ecf1e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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