Skip to content

Commit

Permalink
Merge pull request #698 from xchem/m2ms-1540-alias-order
Browse files Browse the repository at this point in the history
Add missing migration file (issue 1540)
  • Loading branch information
kaliif authored Dec 5, 2024
2 parents fc0c2cd + 990a773 commit d8f28d9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions viewer/migrations/0085_target_alias_order.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.25 on 2024-12-04 16:03

import django.contrib.postgres.fields
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('viewer', '0084_auto_20241108_1119'),
]

operations = [
migrations.AddField(
model_name='target',
name='alias_order',
field=django.contrib.postgres.fields.ArrayField(base_field=models.TextField(), null=True, size=None),
),
]

0 comments on commit d8f28d9

Please sign in to comment.