develop/soita-2.0 #36

Merged
s470631 merged 12 commits from develop/soita-2.0 into master 2022-05-24 21:02:17 +02:00
Showing only changes of commit 9bcf67756c - Show all commits

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2.9 on 2022-05-15 21:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0004_alter_user_is_active'),
]
operations = [
migrations.AddField(
model_name='user',
name='type',
field=models.CharField(choices=[('admin', 'admin'), ('standard', 'standard')], default='standard', max_length=100),
),
]