Add: Migration
This commit is contained in:
parent
112d972fd9
commit
2cd04d8296
2
.gitignore
vendored
2
.gitignore
vendored
@ -11,7 +11,7 @@ backup/
|
||||
*.sqlite3
|
||||
*.log
|
||||
__pycache__
|
||||
migrations/
|
||||
# migrations/
|
||||
test/
|
||||
._git/
|
||||
sdsvkvu_/
|
||||
|
118
cope2n-api/fwd_api/migrations/0001_initial.py
Executable file
118
cope2n-api/fwd_api/migrations/0001_initial.py
Executable file
@ -0,0 +1,118 @@
|
||||
# Generated by Django 4.1.3 on 2023-04-05 07:19
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
import django.utils.timezone
|
||||
import fwd_api.models.fields.EncryptedCharField
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='OcrTemplate',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('name', models.CharField(max_length=300)),
|
||||
('status', models.IntegerField()),
|
||||
('file_path', fwd_api.models.fields.EncryptedCharField.EncryptedCharField(max_length=500, null=True)),
|
||||
('file_name', fwd_api.models.fields.EncryptedCharField.EncryptedCharField(max_length=500, null=True)),
|
||||
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='PricingPlan',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('code', models.CharField(max_length=300)),
|
||||
('token_limitations', models.IntegerField(default=0)),
|
||||
('duration', models.IntegerField(default=0)),
|
||||
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Subscription',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('current_token', models.IntegerField(default=0)),
|
||||
('limit_token', models.IntegerField(default=0)),
|
||||
('status', models.IntegerField(default=0)),
|
||||
('start_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('expired_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('pricing_plan', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fwd_api.pricingplan')),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='SubscriptionRequest',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('pages', models.IntegerField()),
|
||||
('doc_type', models.CharField(max_length=100)),
|
||||
('request_id', models.CharField(max_length=200)),
|
||||
('process_type', models.CharField(max_length=200)),
|
||||
('provider_code', models.CharField(default='Guest', max_length=200)),
|
||||
('predict_result', models.JSONField(null=True)),
|
||||
('status', models.IntegerField()),
|
||||
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('subscription', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fwd_api.subscription')),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='UserProfile',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('full_name', models.CharField(max_length=100)),
|
||||
('sync_id', models.CharField(max_length=100)),
|
||||
('provider_id', models.CharField(default='Ctel', max_length=100)),
|
||||
('current_total_pages', models.IntegerField(default=0)),
|
||||
('limit_total_pages', models.IntegerField(default=0)),
|
||||
('status', models.IntegerField(default=0)),
|
||||
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='SubscriptionRequestFile',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('file_name', models.CharField(default=None, max_length=300)),
|
||||
('file_path', fwd_api.models.fields.EncryptedCharField.EncryptedCharField(default=None, max_length=500)),
|
||||
('file_category', models.CharField(default='Origin', max_length=200)),
|
||||
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('request', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='files', to='fwd_api.subscriptionrequest')),
|
||||
],
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='subscription',
|
||||
name='user',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fwd_api.userprofile'),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='OcrTemplateBox',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('name', models.CharField(max_length=300, null=True)),
|
||||
('type', models.CharField(max_length=100)),
|
||||
('coordinates', models.CharField(max_length=200)),
|
||||
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('template', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fwd_api.ocrtemplate')),
|
||||
],
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='ocrtemplate',
|
||||
name='subscription',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fwd_api.subscription'),
|
||||
),
|
||||
]
|
@ -0,0 +1,28 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:10
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL6ad3c98077bf4f9d80514d73219f24d1', max_length=300),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='userprofile',
|
||||
name='email',
|
||||
field=models.CharField(max_length=200, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='userprofile',
|
||||
name='full_name',
|
||||
field=models.CharField(max_length=200),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0003_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0003_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:16
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0002_subscriptionrequestfile_code_userprofile_email_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL6cdfa631c89d41adb8263d8520732ea6', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0004_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0004_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:17
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0003_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa095ae5ffa3f490bab474c4f2e66a1ba', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0005_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0005_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0004_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL80569683e66148cd8aaa53a5ff622615', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0006_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0006_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:27
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0005_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL4a84b7636cfe4db39cd10fbd5a77c085', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0007_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0007_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:28
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0006_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL45b8e408ff1c4e9e8794b77e78437699', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0008_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0008_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:30
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0007_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL7a628e80e45e4c3ea09c5b90054045aa', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0009_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0009_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:34
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0008_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa7745c2091c84eb29b57e5344bf6cb31', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0010_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0010_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0009_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILaff0fce70fb04779825ba49b86a65ed3', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0011_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0011_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 08:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0010_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL945a1575172d45f0a680ddc178798575', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0012_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0012_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 09:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0011_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILf7d18096cb3746dda5e943f06130591a', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0013_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0013_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 09:05
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0012_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa1b36d470eb74a0cb49abc006b7a45d4', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0014_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0014_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 09:09
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0013_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILd7e2686ad2294812b8e39028dbad95d0', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0015_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0015_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 09:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0014_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILc8d66f9a9820478dbeff39a7f1bdaae7', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0016_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0016_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 10:12
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0015_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILfe1b5576bb7f4b1ebbc9eff4444048f3', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0017_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0017_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-13 12:30
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0016_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILca899ac19c814b5e8abb6fd739950b48', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0018_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0018_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-16 06:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0017_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL679f7b306fa041518d362290db1109ad', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0019_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0019_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-16 07:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0018_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL9125f3f02a994758b5819d635cf354ed', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0020_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0020_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-16 07:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0019_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL0ce5f73923cc4eab9a66adadf874354c', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0021_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0021_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-16 07:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0020_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILcb3b1cfd6a174caea4a45395435e8264', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0022_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0022_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-16 08:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0021_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL4c38a62d96994bf09e5a1730ecfaf10e', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0023_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0023_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-18 06:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0022_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL8d7d194cce344b7da23466f277c68184', max_length=300),
|
||||
),
|
||||
]
|
18
cope2n-api/fwd_api/migrations/0024_alter_subscriptionrequestfile_code.py
Executable file
18
cope2n-api/fwd_api/migrations/0024_alter_subscriptionrequestfile_code.py
Executable file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-10-27 03:22
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0023_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILbdffc84dde6b497c9c450c78b0640a0f', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 10:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0024_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL5b6b2a5176e749edae3be7cac245ea3e', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 11:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0025_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL7d56336dcec347c79da7feec7d802687', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:22
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0026_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILc2a2a162611142f9888fe60df3930fb4', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0027_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL7a6dc0368a9d42cc872dc86a115ce956', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:27
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0028_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL48b3c5102d7e4d109963edd70293524b', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0029_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILbf88633ff774438cb6c75663b578851f', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:34
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0030_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL31b8cc93916948b589117c19fa2c62f1', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:36
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0031_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa8037c1a968f4922ae5ddd5904989745', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:41
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0032_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL99554e8c9ac04e4cb710b0d3f5ca7962', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:45
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0033_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa03caec1116644b8ac3363c4ff86ae84', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:47
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0034_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL95116a6c7072422f8b85d6e627bb25b6', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:47
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0035_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL3cd55c695d634d8c8b0f9b174c5aa5c0', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0036_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL48af5750e75c44aba1c37b7db81c301d', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 12:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0037_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILb91182363733468fb097a90e858d8fd4', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 13:09
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0038_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILed00caacc0594739a7303d0017940d3f', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 13:10
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0039_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa4a846ce46c744bb9a20a35d98cc98c7', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-27 13:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0040_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL614361b87041476aa7983dded361341a', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 03:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0041_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILd6755b95d03c499792041b55a64d5a9f', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 08:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0042_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL2ff8a87566434d23b50baa82d0993483', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0043_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL457d126686c34c4bb200cb576c5fd31c', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:35
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0044_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL990106372b0b456e9d936e3bc170cfb4', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:37
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0045_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL8df31dbe1bfd402eb976a67919244f51', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:38
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0046_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL6bb95d8fb2f14757a4365058e7aab84c', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:42
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0047_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL6910cd1cff1849ee91109298cfee2fb0', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:42
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0048_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILd6b0d80a5bf94f87aeea803cf77a1d81', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:53
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0049_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL359fb138f4434fa1860f6927badb4a3c', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 09:57
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0050_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILee6ab5a3296345ca8d42bde2f523e852', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 10:02
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0051_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL622353d9d8d1492d8bd77f150e02aabf', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 10:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0052_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL20bddf9dd2694e56adb2f4160d9254ee', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 10:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0053_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILbba8d19152024d01bb26063ca26f57ef', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 10:05
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0054_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL619b04fdcd9a44ed987a72a282cc4ca3', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 10:08
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0055_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa86df077a1734c289e04b2c56afa33fe', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:21
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0056_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL996c470fedc64ad4825798642d687092', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:28
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0057_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL3eb614edc9284d7892c890ee5ebffce5', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0058_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL51bbc6937ddf4dea93a8ab57d3e04411', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:30
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0059_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILe8ad9caeca4a4f86a23673cc8d00ee65', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0060_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL63c7091d586d4acea449985045a5bba9', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:34
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0061_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL95df4ac68d194c86ba7aed53940f083a', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:35
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0062_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILf41f2b04385845258b40ba4296aebafc', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-28 12:37
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0063_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL8e126a8613ab4346acb968121ba10465', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 07:11
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0064_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL14de2e7b97194afa97a7825143af8aee', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 07:56
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0065_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa34ea0946b9f45ac81c9a27baeeb0dec', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 07:57
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0066_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL2ced0a615954429ebcaeae17911523ae', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 08:53
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0067_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL03d3ec8941754434a0fce2506b2a5097', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 08:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0068_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL261f6c33dc94443b9f2f7797ab755c1b', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 10:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0069_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILc09522b1b1fb48bbb0ff09a626edb460', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 10:46
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0070_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL5c818cfff0c34ebb80c8f1f4f109f6d4', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 10:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0071_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL481bbc026dc2478bad9aef691170be7f', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 11:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0072_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILd25879a8398b4c2a91957b7591e5293f', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 12:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0073_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL70de352c3c444e2cb59549332a80804c', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 12:09
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0074_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL5e75dfbb5408410d84a8a2ecc7075e76', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 12:11
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0075_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL6723b091b4ef458381a0776f01dac2ed', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 12:18
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0076_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL9374d86d354c40ef9e092c8de167dee9', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-29 12:20
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0077_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILad784dc904fc4887bf3faafc5776efce', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-30 03:36
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0078_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILaf78241d30e14c82a0bfbe3942fb7a94', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-11-30 10:18
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0079_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL2d6ff88bb7b84bfdb5f58a09784b3456', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 05:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0080_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILe5fdb986f1d94881bcc6e7a1db9941ab', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 05:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0081_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL8103f9693bff43d49861f3a2936a9a99', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:09
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0082_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILd8c5b8b919a34af39e695daa2de3066f', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:10
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0083_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL1c830421f0e54ced8d15c57c3c173722', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:18
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0084_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa9efee200d3043c384a3afb21752c227', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0085_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL336fdc9bf94845eab5b05a6f4b5b3e17', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0086_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL833cbc10c9244f76a0fe222df20ef9c5', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:53
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0087_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILb4c7005e670d4a9b9224726a1a87db82', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0088_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILbad444b587b34111a6f9e2e213de139c', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0089_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILf72053106c574c8788aee534a60b2b45', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:57
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0090_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa824aca123bc4fe08d209fc212ef81b2', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 06:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0091_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL059f4a07f6434890a23bb62061bc70fc', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 08:08
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0092_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL94831c61e579461989dc21cc8d9682e7', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 08:11
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0093_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILaad5748718204676bbf12642bd7d0c69', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 08:27
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0094_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL4d40f42a977c4ef7a525d3441eff0efa', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 08:37
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0095_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILa0bb817e1e5e499da1ae400065843625', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 08:43
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0096_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL6ed80d0cb71b4e34932643c643bb7c1b', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 08:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0097_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FILeb6c27424e1d4b768e182c0de4726df8', max_length=300),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.1.3 on 2023-12-04 08:50
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('fwd_api', '0098_alter_subscriptionrequestfile_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='subscriptionrequestfile',
|
||||
name='code',
|
||||
field=models.CharField(default='FIL102ff313bc4c4363a3968eea77380ffc', max_length=300),
|
||||
),
|
||||
]
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user