Skip to content

Commit e0aef36

Browse files
committed
Add new migration
1 parent c8c1ac9 commit e0aef36

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-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 3.2.18 on 2023-02-28 22:04
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('api', '0012_aqlquery_bind_vars'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='upload',
15+
name='data_type',
16+
field=models.CharField(choices=[('CSV', 'Csv'), ('JSON', 'Json'), ('D3_JSON', 'D3 Json'), ('NESTED_JSON', 'Nested Json'), ('NEWICK', 'Newick')], max_length=20),
17+
),
18+
]

0 commit comments

Comments
 (0)