Skip to content
Snippets Groups Projects
Commit b2815a85 authored by Fabien Quatravaux's avatar Fabien Quatravaux
Browse files

bugfix: add conditionnal dependency to skill

parent 3b29994b
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
import djangoldp.fields
from django.conf import settings
class Migration(migrations.Migration):
......@@ -13,6 +14,9 @@ class Migration(migrations.Migration):
('djangoldp_profile', '0007_auto_20200617_1817'),
]
if 'djangoldp_skill' in list(settings.DJANGOLDP_PACKAGES):
dependencies.append(('djangoldp_skill', '0001_initial'))
operations = [
migrations.CreateModel(
name='Address',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment