mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-04-19 23:46:53 +00:00
add unique mobile number migrations
This commit is contained in:
parent
02b6a64674
commit
d44b2ad6af
17
api/migrations/0006_alter_user_mobile.py
Normal file
17
api/migrations/0006_alter_user_mobile.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 5.1.2 on 2025-03-24 10:15
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("api", "0005_alter_atoll_name_alter_island_name"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="user",
|
||||||
|
name="mobile",
|
||||||
|
field=models.CharField(blank=True, max_length=255, null=True, unique=True),
|
||||||
|
),
|
||||||
|
]
|
Loading…
x
Reference in New Issue
Block a user