Sith/trombi/migrations/0002_trombi_show_profiles.py

20 lines
461 B
Python
Raw Normal View History

2017-05-12 08:25:26 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2018-10-04 19:29:19 +00:00
dependencies = [("trombi", "0001_initial")]
2017-05-12 08:25:26 +00:00
operations = [
migrations.AddField(
2018-10-04 19:29:19 +00:00
model_name="trombi",
name="show_profiles",
field=models.BooleanField(
default=True, verbose_name="show users profiles to each other"
),
)
2017-05-12 08:25:26 +00:00
]