Skip to content

Commit

Permalink
The corresponding migration for the Publication.pub_type change
Browse files Browse the repository at this point in the history
  • Loading branch information
mberacochea committed Nov 8, 2023
1 parent 3ee7e1d commit 2dbd1bd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions emgapi/migrations/0011_alter_publication_pub_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.18 on 2023-11-08 08:13

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('emgapi', '0010_runextraannotation'),
]

operations = [
migrations.AlterField(
model_name='publication',
name='pub_type',
field=models.CharField(blank=True, db_column='PUB_TYPE', max_length=300, null=True),
),
]

0 comments on commit 2dbd1bd

Please sign in to comment.