diff --git a/connect/common/migrations/0083_auto_20231206_0415.py b/connect/common/migrations/0083_auto_20231206_0415.py new file mode 100644 index 00000000..bacffaf5 --- /dev/null +++ b/connect/common/migrations/0083_auto_20231206_0415.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2023-12-06 04:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('common', '0082_auto_20231005_1945'), + ] + + operations = [ + migrations.AddField( + model_name='project', + name='description', + field=models.CharField(blank=True, max_length=1000, null=True, verbose_name='Project description with the context'), + ), + ] diff --git a/connect/common/models.py b/connect/common/models.py index d06478d7..301d9c1c 100644 --- a/connect/common/models.py +++ b/connect/common/models.py @@ -732,6 +732,7 @@ class Meta: null=True, blank=True ) + description = models.CharField("Project description with the context", null=True, blank=True, max_length=1000) def __str__(self): return f"{self.uuid} - Project: {self.name} - Org: {self.organization.name}"