# Generated by Django 4.1.4 on 2025-03-24 12:00

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('admin_api', '0025_benefits'),
    ]

    operations = [
        migrations.CreateModel(
            name='SetdoitbyReeipoPrice',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('price', models.IntegerField(default=0, null=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now_add=True)),
                ('end_date', models.DateTimeField(null=True)),
            ],
            options={
                'db_table': 'do_it_reeipo_price',
            },
        ),
    ]
