Skip to content

Commit a2a4565

Browse files
committed
OKRS24-92 Added missing migrations
1 parent 2d42179 commit a2a4565

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.0.2 on 2024-02-26 20:58
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('base', '0002_link_created_link_modified'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='link',
15+
name='link_type',
16+
field=models.CharField(choices=[('api_documentation', 'API Documentation'), ('dua', 'DUA'), ('interpreting_mask', 'Interpreting mask use in context'), ('question_text', 'Question text'), ('survey_details', 'Survey details'), ('survey_documentation', 'Survey documentation'), ('technical_description', 'Technical description'), ('wave_10_revision', 'Wave 10 revision updates'), ('wave_11_revision', 'Wave 11 revision updates'), ('other', 'Other'), ('example_url', 'Example URL')], help_text='Link type', max_length=128),
17+
),
18+
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by Django 5.0.2 on 2024-03-05 20:59
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('base', '0003_alter_link_link_type'),
10+
('base', '0003_descriptedfilter_alter_link_link_type_and_more'),
11+
]
12+
13+
operations = [
14+
]

0 commit comments

Comments
 (0)