Skip to content

Commit

Permalink
Track 'archived' status on ActiveProject model (migration).
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Dec 1, 2023
1 parent d2f709f commit 25fc5c5
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.10 on 2023-12-01 07:00

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("project", "0072_aws"),
]

operations = [
migrations.AddField(
model_name="activeproject",
name="archive_datetime",
field=models.DateTimeField(blank=True, null=True),
),
]

0 comments on commit 25fc5c5

Please sign in to comment.