django-learning-hv3/django_project/tenants/migrations/0004_alter_tenant_salution.py

19 lines
446 B
Python
Raw Normal View History

2023-01-01 19:51:38 +01:00
# Generated by Django 4.0.8 on 2023-01-01 18:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('tenants', '0003_alter_tenant_address1_alter_tenant_address2_and_more'),
]
operations = [
migrations.AlterField(
model_name='tenant',
name='salution',
field=models.CharField(blank=True, max_length=128, null=True),
),
]