create initial models and mobile test for mojtaba eshaghi

This commit is contained in:
2025-05-05 15:25:46 +03:30
parent 7e301c14b7
commit ec58d9ef5e
167 changed files with 614 additions and 23 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.20 on 2025-05-05 08:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0006_remove_user_ownership'),
]
operations = [
migrations.AddField(
model_name='user',
name='ownership',
field=models.CharField(choices=[('N', 'Natural'), ('L', 'Legal')], default='N', help_text='N is natural & L is legal', max_length=1),
),
]