SciPost Code Repository

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

allow journal to have no alternatives

parent 5ca53c4b
No related branches found
No related tags found
No related merge requests found
# Generated by Django 4.2.15 on 2024-09-20 09:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("journals", "0136_publication_author_info_source"),
]
operations = [
migrations.AlterField(
model_name="journal",
name="alternative_journals",
field=models.ManyToManyField(blank=True, to="journals.journal"),
),
]
......@@ -145,7 +145,7 @@ class Journal(models.Model):
blank=True,
)
alternative_journals = models.ManyToManyField("self")
alternative_journals = models.ManyToManyField("self", blank=True)
# Cost per publication information
cost_info = models.JSONField(default=cost_default_value)
......
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