fix conflict

This commit is contained in:
2025-03-19 13:48:52 +01:00
parent a2a091e416
commit 007384b196
4 changed files with 10 additions and 6 deletions

View File

@@ -44,8 +44,8 @@ class CreatedBy(models.Model):
class Organization(models.Model):
name = models.CharField(max_length=255, help_text="What is the name of your organization?")
email = models.EmailField(help_text="What is your email?")
name = models.CharField(max_length=255, unique=True, help_text="What is the name of your organization?")
email = models.EmailField(unique=True, help_text="What is your email?")
employee_headcount = models.CharField(max_length=20, help_text="What is your organization's current employee headcount?")
annual_revenue = models.CharField(max_length=20, help_text="What is your organization's annual revenue range?")
critical_applications = models.CharField(max_length=20, help_text="How many critical business applications do your employees use daily?")