Skip to content

Commit

Permalink
resolve migration conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwegner committed Jul 17, 2017
1 parent 5b6888f commit d4b8f77
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
19 changes: 0 additions & 19 deletions pinax/teams/migrations/0003_add_team_parent.py

This file was deleted.

26 changes: 26 additions & 0 deletions pinax/teams/migrations/0005_add_team_parent.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-07-17 21:34
from __future__ import unicode_literals

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


class Migration(migrations.Migration):

dependencies = [
('pinax_teams', '0004_auto_20170511_0856'),
]

operations = [
migrations.AddField(
model_name='simpleteam',
name='parent',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='children', to='pinax_teams.SimpleTeam'),
),
migrations.AddField(
model_name='team',
name='parent',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='children', to='pinax_teams.Team'),
),
]

0 comments on commit d4b8f77

Please sign in to comment.