19 lines
406 B
Python
19 lines
406 B
Python
# Generated by Django 3.1.7 on 2021-03-31 08:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders_app', '0017_order_customer'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customer',
|
|
name='social_media',
|
|
field=models.CharField(blank=True, max_length=128),
|
|
),
|
|
]
|