Files
RasadDam_Backend/apps/authentication/migrations/0007_user_ownership.py

19 lines
491 B
Python

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