# 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), ), ]