diff --git a/submissions/migrations/0043_remove_submission_submitted_to_journal.py b/submissions/migrations/0043_remove_submission_submitted_to_journal.py new file mode 100644 index 0000000000000000000000000000000000000000..c96d3314ce9ffe7f8713187f5d74541836c466ba --- /dev/null +++ b/submissions/migrations/0043_remove_submission_submitted_to_journal.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2018-11-10 12:51 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('submissions', '0042_populate_submitted_to'), + ] + + operations = [ + migrations.RemoveField( + model_name='submission', + name='submitted_to_journal', + ), + ] diff --git a/submissions/models.py b/submissions/models.py index e20f958822dfe40eecfe828ebf0009cd95e20a5f..ea7c57afca1915791d04126dea38fe0b608c98f1 100644 --- a/submissions/models.py +++ b/submissions/models.py @@ -36,7 +36,7 @@ from scipost.constants import TITLE_CHOICES from scipost.constants import SCIPOST_DISCIPLINES, SCIPOST_SUBJECT_AREAS from scipost.fields import ChoiceArrayField from scipost.storage import SecureFileStorage -from journals.constants import SCIPOST_JOURNALS_SUBMIT, SCIPOST_JOURNALS_DOMAINS +from journals.constants import SCIPOST_JOURNALS_DOMAINS from journals.models import Publication from mails.utils import DirectMailUtil @@ -90,9 +90,6 @@ class Submission(models.Model): voting_fellows = models.ManyToManyField('colleges.Fellowship', blank=True, related_name='voting_pool') - # Replace this by foreignkey? - submitted_to_journal = models.CharField(max_length=30, choices=SCIPOST_JOURNALS_SUBMIT, - verbose_name="Journal to be submitted to") submitted_to = models.ForeignKey('journals.Journal', on_delete=models.CASCADE, blank=True, null=True) proceedings = models.ForeignKey('proceedings.Proceedings', null=True, blank=True,