dev: remove start date and end date from project

This commit is contained in:
pablohashescobar 2024-05-07 14:47:56 +05:30
parent 7d63e6ad25
commit 9ab3cecfcf
2 changed files with 0 additions and 12 deletions

View File

@ -213,16 +213,6 @@ class Migration(migrations.Migration):
},
),
migrations.RunPython(migrate_user_profile),
migrations.AddField(
model_name="project",
name="end_date",
field=models.DateField(blank=True, null=True),
),
migrations.AddField(
model_name="project",
name="start_date",
field=models.DateField(blank=True, null=True),
),
migrations.RemoveField(
model_name="user",
name="billing_address",

View File

@ -115,8 +115,6 @@ class Project(BaseModel):
related_name="default_state",
)
archived_at = models.DateTimeField(null=True)
start_date = models.DateField(null=True, blank=True)
end_date = models.DateField(null=True, blank=True)
def __str__(self):
"""Return name of the project"""