-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #556 from robertatakenaka/fix_journal_current_stat…
…us_e_questoes_relacionadas Corrige a atribuição de journal current status e resolve questões relacionadas
- Loading branch information
Showing
15 changed files
with
28,539 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
journal/migrations/0005_officialjournal_next_journal_title_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 5.0.3 on 2024-10-12 22:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("journal", "0004_journal_contact_address_journal_contact_location_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="officialjournal", | ||
name="next_journal_title", | ||
field=models.CharField(blank=True, max_length=128, null=True), | ||
), | ||
migrations.AddField( | ||
model_name="officialjournal", | ||
name="previous_journal_title", | ||
field=models.CharField(blank=True, max_length=128, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="journal", | ||
name="journal_acron", | ||
field=models.CharField( | ||
blank=True, max_length=16, null=True, verbose_name="Journal Acronym" | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.