Skip to content

Commit

Permalink
Merge pull request #155 from cccaballero/master
Browse files Browse the repository at this point in the history
include missing migration
  • Loading branch information
epicserve authored May 18, 2020
2 parents 440d9c2 + 3dbc96b commit c1e1ecf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions categories/migrations/0004_auto_20200517_1832.py
Original file line number Diff line number Diff line change
@@ -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'),
),
]

0 comments on commit c1e1ecf

Please sign in to comment.