Skip to content

Commit

Permalink
Extend messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rapicastillo committed Apr 20, 2018
1 parent 8bfead9 commit ce01f4e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions twilio_mgr/migrations/0023_auto_20180420_1633.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.0.3 on 2018-04-20 16:33

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('twilio_mgr', '0022_auto_20180412_2125'),
]

operations = [
migrations.AlterField(
model_name='message',
name='message',
field=models.CharField(max_length=1000),
),
]
2 changes: 1 addition & 1 deletion twilio_mgr/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __str__(self):


class Message(models.Model):
message = models.CharField(max_length=400)
message = models.CharField(max_length=1000)
keyword = models.CharField(max_length=100,unique=True)


Expand Down

0 comments on commit ce01f4e

Please sign in to comment.