Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
awieckowski committed Jul 28, 2020
1 parent 67550d3 commit 3d9b6ba
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/ralph/assets/migrations/0031_auto_20200728_1326.py
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

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


class Migration(migrations.Migration):

dependencies = [
('assets', '0030_auto_20200528_1301'),
]

operations = [
migrations.AlterField(
model_name='baseobject',
name='service_env',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='assets.ServiceEnvironment'),
),
]

0 comments on commit 3d9b6ba

Please sign in to comment.