Skip to content

Commit

Permalink
Added migration for name change
Browse files Browse the repository at this point in the history
  • Loading branch information
mattysmith22 committed Jan 22, 2020
1 parent 228592a commit 8ca55f2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions RIGS/migrations/0034_auto_20200122_0305.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 2.0.13 on 2020-01-22 03:05

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


class Migration(migrations.Migration):

dependencies = [
('RIGS', '0033_auto_20180325_0016'),
]

operations = [
migrations.AlterField(
model_name='payment',
name='invoice',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='payments', to='RIGS.Invoice'),
),
]

0 comments on commit 8ca55f2

Please sign in to comment.