18 lines
467 B
Python
18 lines
467 B
Python
# Generated by Django 5.2.4 on 2025-09-08 10:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0004_company_branch_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='company',
|
|
name='registration_number',
|
|
field=models.CharField(blank=True, max_length=255, null=True, verbose_name='شماره ثبت شرکت'),
|
|
),
|
|
]
|