Skip to content

Commit

Permalink
Merge pull request #593 from JonesChi/django_email_max_length
Browse files Browse the repository at this point in the history
Alter email max length for Django app
  • Loading branch information
omab committed Apr 16, 2015
2 parents 143149a + 663a174 commit f4247db
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('default', '0002_add_related_name'),
]

operations = [
migrations.AlterField(
model_name='code',
name='email',
field=models.EmailField(max_length=254),
),
]

0 comments on commit f4247db

Please sign in to comment.