28 lines
734 B
Python
28 lines
734 B
Python
# Generated by Django 4.0.4 on 2022-05-15 19:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("authentik_flows", "0021_auto_20211227_2103"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="flow",
|
|
name="layout",
|
|
field=models.TextField(
|
|
choices=[
|
|
("stacked", "Stacked"),
|
|
("content_left", "Content Left"),
|
|
("content_right", "Content Right"),
|
|
("sidebar_left", "Sidebar Left"),
|
|
("sidebar_right", "Sidebar Right"),
|
|
],
|
|
default="stacked",
|
|
),
|
|
),
|
|
]
|