Skip to content

Commit

Permalink
fix(api): adds no-op migration that Django thinks is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-wisiol authored and peterthomassen committed Aug 26, 2020
1 parent 557b01e commit 149150c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions api/desecapi/migrations/0002_unmanaged_donations.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 3.1 on 2020-08-26 07:42

# It appears that this migration is "unsquashable". If you squash it in 0001, Django will think it's missing and
# generate it next time again.

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('desecapi', '0001_initial_squashed_again'),
]

operations = [
migrations.AlterModelOptions(
name='donation',
options={'managed': False},
),
]

0 comments on commit 149150c

Please sign in to comment.