-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Increase the length of string fields
- Loading branch information
abhishekram
committed
Mar 15, 2019
1 parent
e0270ad
commit cb267c8
Showing
6 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,4 +61,5 @@ target/ | |
messages/ | ||
certificates/ | ||
logging/ | ||
venv | ||
venv | ||
.DS_STORE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__title__ = 'pyAS2' | ||
__version__ = '0.4.3' | ||
__version__ = '0.4.4' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.6 on 2019-03-15 10:48 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('pyas2', '0019_auto_20180127_0509'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='log', | ||
name='text', | ||
field=models.TextField(), | ||
), | ||
migrations.AlterField( | ||
model_name='mdn', | ||
name='message_id', | ||
field=models.CharField(max_length=250, primary_key=True, serialize=False), | ||
), | ||
migrations.AlterField( | ||
model_name='message', | ||
name='adv_status', | ||
field=models.TextField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='message', | ||
name='message_id', | ||
field=models.CharField(max_length=250, primary_key=True, serialize=False), | ||
), | ||
migrations.AlterField( | ||
model_name='payload', | ||
name='file', | ||
field=models.TextField(), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters