1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/peeringdb_server/migrations/0013_user_locale.py
Matt Griswold 04f1928b3c Updates 2.23 (#843)
* pipenv lock and pyupgrade

* pyupgrade, black format, add docs

* update for py3.7
2020-09-29 20:13:38 -05:00

22 lines
460 B
Python

# Generated by Django 1.11.4 on 2018-03-26 19:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("peeringdb_server", "0012_deskpro"),
]
operations = [
migrations.AddField(
model_name="user",
name="locale",
field=models.CharField(
blank=True, max_length=62, null=True, verbose_name="language"
),
),
]