fix conflict
This commit is contained in:
@@ -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?")
|
||||
|
||||
Reference in New Issue
Block a user