Skip to content

Commit

Permalink
add migration for new metadata_format
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Feb 17, 2021
1 parent a5a19a7 commit a7e61bf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions share/migrations/0056_auto_20210217_1923.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2021-02-17 19:23
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('share', '0055_job_status_created'),
]

operations = [
migrations.AlterField(
model_name='formattedmetadatarecord',
name='record_format',
field=models.TextField(choices=[('oai_dc', 'oai_dc'), ('sharev2_elastic', 'sharev2_elastic')]),
),
]

0 comments on commit a7e61bf

Please sign in to comment.