summaryrefslogtreecommitdiff
path: root/app/deals/migrations/0018_reideal_alter_mydeal_body.py
blob: 627e54fda7f9fb2ff2c314b0fccfe6e7e6674e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Generated by Django 4.2.2 on 2023-08-22 14:22

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('deals', '0017_mydeal_blurb'),
    ]

    operations = [
        migrations.CreateModel(
            name='REIDeal',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('brand_str', models.CharField(max_length=200)),
                ('category', models.CharField(max_length=200)),
                ('title', models.CharField(blank=True, max_length=200, null=True)),
                ('deal_price', models.CharField(max_length=20, null=True)),
                ('original_price', models.CharField(max_length=20, null=True)),
                ('discount_percent_str', models.CharField(max_length=20, null=True)),
                ('url', models.CharField(max_length=200)),
            ],
            options={
                'ordering': ('title',),
            },
        ),
        migrations.AlterField(
            model_name='mydeal',
            name='body',
            field=models.TextField(blank=True, null=True),
        ),
    ]