SciPost Code Repository

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

add affiliate journal description field

fixes #264
parent 832779c1
No related branches found
No related tags found
No related merge requests found
# Generated by Django 4.2.10 on 2024-05-23 08:22
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("affiliates", "0012_affiliatejournal_logo_svg"),
]
operations = [
migrations.AddField(
model_name="affiliatejournal",
name="description",
field=models.TextField(blank=True),
),
]
...@@ -23,6 +23,7 @@ class AffiliateJournal(models.Model): ...@@ -23,6 +23,7 @@ class AffiliateJournal(models.Model):
) )
name = models.CharField(max_length=256) name = models.CharField(max_length=256)
description = models.TextField(blank=True)
short_name = models.CharField(max_length=256, default="") short_name = models.CharField(max_length=256, default="")
......
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