37133-vm/core/migrations/0002_customer.py
Flatlogic Bot fc22ac9ea6 FINAL
2025-12-23 18:05:13 +00:00

24 lines
733 B
Python

# 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)),
],
),
]