Skip to content

Commit

Permalink
fix: migration file added
Browse files Browse the repository at this point in the history
  • Loading branch information
kaliif committed Dec 5, 2024
1 parent 804ad81 commit 990a773
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 990a773

Please sign in to comment.