1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| # Generated by Django 3.2.25 on 2024-07-18 13:55
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ('data_manager', '0010_auto_20230718_1423'),
| ]
|
| operations = [
| migrations.AlterModelOptions(
| name='view',
| options={'ordering': ['order']},
| ),
| migrations.AddField(
| model_name='view',
| name='order',
| field=models.IntegerField(default=0, help_text='Position of the tab, starting at the left in data manager and increasing as the tabs go left to right', null=True, verbose_name='order'),
| ),
| migrations.AddIndex(
| model_name='view',
| index=models.Index(fields=['project', 'order'], name='data_manage_project_69b96e_idx'),
| ),
| ]
|
|