Skip to content

Commit

Permalink
Add fake migration for the greencheck table switch
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchrisadams committed Feb 23, 2024
1 parent 5b1428e commit 45dac25
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions apps/greencheck/migrations/0020_auto_20240223_2122.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 3.2.24 on 2024-02-23 21:22
# FAKE MIGRATION -
# This is needed for tests to pass
# after we switched the main greencheck table from
# greencheck_2021 to greencheck
# in prod, run this as a fake migration
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("greencheck", "0019_auto_20220515_1835"),
]

operations = [
migrations.AlterModelTable(
name="greencheck",
table="greencheck",
),
]

0 comments on commit 45dac25

Please sign in to comment.