19 lines
438 B
Python
19 lines
438 B
Python
# Generated by Django 5.1.7 on 2026-01-24 04:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0363_alter_transaction_discount_unique_together_batch_job'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='email',
|
|
field=models.CharField(max_length=100, null=True, unique=True),
|
|
),
|
|
]
|