* core: add grouping to applications Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * core: add new field to tests Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
19 lines
437 B
Python
19 lines
437 B
Python
# Generated by Django 4.0.3 on 2022-04-02 19:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("authentik_core", "0018_auto_20210330_1345_squashed_0028_alter_token_intent"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="application",
|
|
name="group",
|
|
field=models.TextField(blank=True, default=""),
|
|
),
|
|
]
|