Skip to content

Commit

Permalink
Merge branch 'release/v3.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Sep 29, 2015
2 parents a36703e + 159bcc6 commit f03ebe2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cdr_stats/cdr_stats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# :copyright: (c) 2011-2015 by Arezqui Belaid.
# :license: MPL 2.0, see COPYING for more details.
VERSION = '3.0.1'
VERSION = '3.0.2'

__version__ = VERSION
__author__ = "Arezqui Belaid"
Expand Down
20 changes: 20 additions & 0 deletions cdr_stats/switch/migrations/0002_auto_20150929_1552.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('switch', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='switch',
name='switch_type',
field=models.IntegerField(default=3, max_length=100, choices=[(4, 'ASTERISK'), (3, 'FREESWITCH'), (6, 'KAMAILIO'), (7, 'OPENSIPS'), (8, 'SIPWISE'), (0, 'UNKNOWN'), (9, 'VERAZ'), (5, 'YATE')]),
preserve_default=True,
),
]

0 comments on commit f03ebe2

Please sign in to comment.