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(
|
2023-03-30 12:38:40 +00:00
|
|
|
default=False, verbose_name="receive the weekmail"
|
2018-10-04 19:29:19 +00:00
|
|
|
),
|
|
|
|
)
|
2017-01-11 00:34:16 +00:00
|
|
|
]
|