Sith/core/migrations/0019_preferences_receive_we...

20 lines
481 B
Python
Raw Normal View History

2017-01-11 00:34:16 +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 = [("core", "0018_auto_20161224_0211")]
2017-01-11 00:34:16 +00:00
operations = [
migrations.AddField(
2018-10-04 19:29:19 +00:00
model_name="preferences",
name="receive_weekmail",
field=models.BooleanField(
default=False, verbose_name="do you want to receive the weekmail"
),
)
2017-01-11 00:34:16 +00:00
]