mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-06-15 21:06:29 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m37s
18 lines
407 B
Python
18 lines
407 B
Python
# Generated by Django 5.2 on 2025-06-09 06:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("api", "0015_user_created_at_user_updated_at_temporaryuser"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="user",
|
|
name="is_admin",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|