Skip to content

Commit

Permalink
Add migration to remove ArchivedProject.
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Sep 25, 2024
1 parent 7ced7d5 commit 9212922
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions physionet-django/project/migrations/0078_delete_archivedproject.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.13 on 2024-09-25 04:41

from django.db import migrations


class Migration(migrations.Migration):
MIGRATE_AFTER_INSTALL=True

dependencies = [
("project", "0077_fix_some_references"),
]

operations = [
migrations.DeleteModel(
name="ArchivedProject",
),
]

0 comments on commit 9212922

Please sign in to comment.