SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 47a7cd7f authored by George Katsikas's avatar George Katsikas :goat:
Browse files

make role field on contact optional

parent 772a17ea
No related branches found
No related tags found
No related merge requests found
# Generated by Django 4.2.15 on 2024-10-08 15:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("organizations", "0022_contactperson_date_deprecated_contactperson_status"),
]
operations = [
migrations.AlterField(
model_name="contactperson",
name="role",
field=models.CharField(blank=True, max_length=128, null=True),
),
]
...@@ -709,7 +709,7 @@ class ContactPerson(models.Model): ...@@ -709,7 +709,7 @@ class ContactPerson(models.Model):
first_name = models.CharField(max_length=64) first_name = models.CharField(max_length=64)
last_name = models.CharField(max_length=64) last_name = models.CharField(max_length=64)
email = models.EmailField() email = models.EmailField()
role = models.CharField(max_length=128) role = models.CharField(max_length=128, blank=True, null=True)
status = models.CharField( status = models.CharField(
max_length=16, choices=STATUS_CHOICES, default=STATUS_UNKNOWN max_length=16, choices=STATUS_CHOICES, default=STATUS_UNKNOWN
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment