# Generated by Django 4.1.3 on 2024-01-09 10:08 from django.db import migrations, models import django.db.models.deletion import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('fwd_api', '0164_subscriptionrequest_client_request_time_and_more'), ] operations = [ migrations.CreateModel( name='FeedbackRequest', fields=[ ('id', models.AutoField(primary_key=True, serialize=False)), ('feedback_id', models.CharField(max_length=200)), ('file_name', models.CharField(max_length=200)), ('origin_name', models.CharField(max_length=200)), ('error_status', models.JSONField(null=True)), ('created_at', models.DateTimeField(db_index=True, default=django.utils.timezone.now)), ('updated_at', models.DateTimeField(auto_now=True)), ('S3_uploaded', models.BooleanField(default=False)), ('subscription', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fwd_api.subscription')), ], ), ]