web_defender/Accounts/migrations/0003_userprofile_company_name.py
2024-12-09 13:43:16 +05:30

19 lines
463 B
Python

# Generated by Django 5.0.4 on 2024-04-23 04:19
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('Accounts', '0002_remove_userprofile_billing_address_and_more'),
]
operations = [
migrations.AddField(
model_name='userprofile',
name='company_name',
field=models.CharField(blank=True, max_length=100, null=True),
),
]