# Generated by Django 5.0 on 2026-02-09 06:57 import django.db.models.deletion from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('authentication', '0061_organization_unique_unit_identity_and_more'), ] operations = [ migrations.CreateModel( name='OrganizationLocationInfo', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('create_date', models.DateTimeField(auto_now_add=True)), ('modify_date', models.DateTimeField(auto_now=True)), ('creator_info', models.CharField(max_length=100, null=True)), ('modifier_info', models.CharField(max_length=100, null=True)), ('trash', models.BooleanField(default=False)), ('postal_code', models.CharField(blank=True, max_length=150, null=True)), ('address', models.TextField(blank=True, max_length=2000, null=True)), ('created_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_createddby', to=settings.AUTH_USER_MODEL)), ('modified_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_modifiedby', to=settings.AUTH_USER_MODEL)), ('org', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='locations', to='authentication.organization')), ], options={ 'abstract': False, }, ), ]