# Generated by Django 5.2.7 on 2025-12-23 14:49 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('core', '0001_initial'), ] operations = [ migrations.CreateModel( name='Customer', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=200)), ('email', models.EmailField(max_length=254, unique=True)), ('phone', models.CharField(blank=True, max_length=20, null=True)), ('address', models.TextField(blank=True, null=True)), ], ), ]