Skip to content

Commit

Permalink
Fix missing migration file and migration dependancies (django-cms#56)
Browse files Browse the repository at this point in the history
Fix failing tests on dependant packages due to incorrect migration dependancies and also a missing migration added (django-cms#56)
  • Loading branch information
Aiky30 authored May 17, 2021
1 parent ac6f19d commit ef25888
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions djangocms_url_manager/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class Migration(migrations.Migration):
dependencies = [
("sites", "0002_alter_domain_unique"),
("contenttypes", "0002_remove_content_type_name"),
('cms', '0034_remove_pagecontent_placeholders'),
]

operations = [
Expand Down
19 changes: 19 additions & 0 deletions djangocms_url_manager/migrations/0006_auto_20210513_1359.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 2.2.20 on 2021-05-13 13:59

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('djangocms_url_manager', '0005_auto_20200923_0843'),
]

operations = [
migrations.AlterField(
model_name='url',
name='content_type',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, related_name='djangocms_url_manager_url_content_type', to='contenttypes.ContentType'),
),
]

0 comments on commit ef25888

Please sign in to comment.