fix: 🌈 add migration for adding lami lioa to languages
This commit is contained in:
parent
ad808299ce
commit
d594a83ace
1 changed files with 18 additions and 0 deletions
18
moku/migrations/0007_add_lami_lioa_to_languages.py
Normal file
18
moku/migrations/0007_add_lami_lioa_to_languages.py
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 5.0.3 on 2024-03-27 09:58
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('moku', '0006_recipe_post_recipe_recipestep'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='usersettings',
|
||||||
|
name='language',
|
||||||
|
field=models.CharField(choices=[('en', 'english'), ('lio', 'lami lioa'), ('tok', 'toki pona')], default='en', help_text='what language do you want to use moku.blog in?', max_length=16, verbose_name='language'),
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
Reference in a new issue