evorepo/news/migrations/0002_news_send_announce.py
Giancarlo Razzolini 198f35c3b9
news: Add send_announce to the model
Added a new send_announce boolean that controls if an e-mail containing
the announce will or not be sent.
2017-03-20 16:40:00 -03:00

21 lines
428 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('news', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='news',
name='send_announce',
field=models.BooleanField(default=True),
preserve_default=True,
),
]