Add migrations
This commit is contained in:
parent
3b6b7f9a30
commit
669bef9528
@ -0,0 +1,31 @@
|
||||
# Generated by Django 4.1.3 on 2024-11-05 02:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0194_alter_semiautocorrection_feedback_accuracy_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequest',
|
||||
name='request_id',
|
||||
field=models.CharField(db_index=True, max_length=200),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='userprofile',
|
||||
name='id',
|
||||
field=models.AutoField(db_index=True, primary_key=True, serialize=False),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name='subscriptionrequestfile',
|
||||
index=models.Index(fields=['request', 'index_in_request', 'doc_type'], name='fwd_api_sub_request_890e13_idx'),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name='subscriptionrequestfile',
|
||||
index=models.Index(fields=['request', 'file_name'], name='fwd_api_sub_request_1a42cd_idx'),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user