# Generated by Django 5.1.6 on 2025-05-14 11:47

import colorfield.fields
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('feedback', '0001_initial'),
    ]

    operations = [
        migrations.CreateModel(
            name='QRcodeGenerate',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=255)),
                ('url', models.URLField()),
                ('qr_size', models.PositiveIntegerField(default=10, help_text='Size of each box in the QR code')),
                ('qr_color', colorfield.fields.ColorField(default='#000000', help_text='Color of the QR code', image_field=None, max_length=25, samples=None)),
                ('qr_background', colorfield.fields.ColorField(default='#FFFFFF', help_text='Background color of the QR code', image_field=None, max_length=25, samples=None)),
                ('module_drawer', models.CharField(choices=[('square', 'Square'), ('gapped_square', 'Gapped Square'), ('circle', 'Circle'), ('rounded', 'Rounded'), ('vertical_bars', 'Vertical Bars'), ('horizontal_bars', 'Horizontal Bars')], default='square', max_length=20)),
                ('eye_drawer', models.CharField(choices=[('square', 'Square'), ('circle', 'Circle'), ('rounded', 'Rounded')], default='square', max_length=20)),
            ],
            options={
                'verbose_name': 'QR Code Generate',
                'verbose_name_plural': 'QR Code Generate',
            },
        ),
    ]
