Import Customers
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 5.0.6 on 2024-10-26 22:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('don_confiao', '0030_paymentsale'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='customer',
|
||||
old_name='address',
|
||||
new_name='email',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='customer',
|
||||
name='phone',
|
||||
field=models.CharField(blank=True, max_length=100, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user