Skip to content

Commit 8f64c82

Browse files
committed
Added missing migrations
1 parent 670bbb9 commit 8f64c82

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.10.2 on 2017-04-15 22:11
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('notifications', '0005_telegrambot_debug'),
12+
]
13+
14+
operations = [
15+
migrations.AlterField(
16+
model_name='telegrambot',
17+
name='debug',
18+
field=models.BooleanField(default=False, help_text='Enable online evaluation of each image received', verbose_name='Debug enabled'),
19+
),
20+
]

0 commit comments

Comments
 (0)