You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.9 KiB
40 lines
1.9 KiB
# Generated by Django 4.1.1 on 2024-02-16 12:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ASSNotification',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('notificationType', models.CharField(max_length=100)),
|
|
('subtype', models.CharField(blank=True, max_length=100, null=True)),
|
|
('notificationUUID', models.CharField(max_length=100)),
|
|
('signedDate', models.DateField()),
|
|
('productId', models.CharField(blank=True, max_length=100, null=True)),
|
|
('appAccountToken', models.CharField(blank=True, max_length=100, null=True)),
|
|
('currency', models.CharField(blank=True, max_length=100, null=True)),
|
|
('expiresDate', models.DateField()),
|
|
('isUpgraded', models.BooleanField()),
|
|
('originalPurchaseDate', models.DateField()),
|
|
('originalTransactionId', models.CharField(blank=True, max_length=100, null=True)),
|
|
('price', models.IntegerField(blank=True, null=True)),
|
|
('quantity', models.IntegerField(blank=True, null=True)),
|
|
('revocationDate', models.DateField()),
|
|
('storefront', models.CharField(blank=True, max_length=100, null=True)),
|
|
('transactionId', models.CharField(blank=True, max_length=100, null=True)),
|
|
('transactionReason', models.IntegerField(blank=True, null=True)),
|
|
('succeededCount', models.IntegerField(blank=True, null=True)),
|
|
('failedCount', models.IntegerField(blank=True, null=True)),
|
|
('requestIdentifier', models.CharField(blank=True, max_length=100, null=True)),
|
|
],
|
|
),
|
|
]
|
|
|