blob: 5e424e57650c300e341af5b7fb13bbf0b7254f5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('django_comments', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='comment',
name='user_email',
field=models.EmailField(
max_length=254, verbose_name="user's email address",
blank=True),
),
]
|