mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-11 18:56:23 +00:00
23 lines
548 B
Python
23 lines
548 B
Python
# Generated by Django 2.0.6 on 2018-07-05 12:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("ivataraccount", "0009_auto_20180705_1152"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="userpreference",
|
|
name="theme",
|
|
field=models.CharField(
|
|
choices=[("default", "Default theme"), ("falko", "falkos theme")],
|
|
default="default",
|
|
max_length=10,
|
|
),
|
|
),
|
|
]
|