create initial models and mobile test for mojtaba eshaghi
This commit is contained in:
18
apps/authentication/migrations/0007_user_ownership.py
Normal file
18
apps/authentication/migrations/0007_user_ownership.py
Normal 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user