feature/registers-generate-test-data-command #12

Merged
avm merged 3 commits from feature/registers-generate-test-data-command into dev 2026-03-20 13:23:21 +03:00
3 changed files with 66 additions and 0 deletions
Showing only changes of commit c8bdc282de - Show all commits

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.25 on 2026-03-20 10:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('exchange', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='exchangeconnection',
name='password',
field=models.TextField(help_text='Хранится в зашифрованном виде', verbose_name='пароль'),
),
]

View File

@@ -0,0 +1,29 @@
# Generated by Django 3.2.25 on 2026-03-20 10:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('parsers', '0012_add_industrial_product_record'),
]
operations = [
migrations.RemoveIndex(
model_name='industrialproductrecord',
name='parsers_indprod_load_ba_98b870_idx',
),
migrations.RemoveIndex(
model_name='industrialproductrecord',
name='parsers_indprod_inn_eb2ad3_idx',
),
migrations.AddIndex(
model_name='industrialproductrecord',
index=models.Index(fields=['load_batch', 'inn'], name='parsers_ind_load_ba_680f5a_idx'),
),
migrations.AddIndex(
model_name='industrialproductrecord',
index=models.Index(fields=['inn', 'registry_number'], name='parsers_ind_inn_05320c_idx'),
),
]

View File

@@ -0,0 +1,19 @@
# Generated by Django 3.2.25 on 2026-03-20 10:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('auth', '0012_alter_user_first_name_max_length'),
('user', '0007_profile_middle_name'),
]
operations = [
migrations.AlterField(
model_name='user',
name='groups',
field=models.ManyToManyField(blank=True, help_text='', related_name='custom_user_set', related_query_name='custom_user', to='auth.Group', verbose_name='groups'),
),
]