New migration to add videoconferences_extra_data field in Project and ProjectTenmplate

remotes/origin/enhancement/email-actions
David Barragán Merino 2015-07-21 17:17:13 +02:00
parent 181a3858d1
commit c13dcb7757
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('projects', '0022_auto_20150701_0924'),
]
operations = [
migrations.AlterField(
model_name='project',
name='videoconferences_extra_data',
field=models.CharField(max_length=250, blank=True, null=True, verbose_name='videoconference extra data'),
preserve_default=True,
),
migrations.AlterField(
model_name='projecttemplate',
name='videoconferences_extra_data',
field=models.CharField(max_length=250, blank=True, null=True, verbose_name='videoconference extra data'),
preserve_default=True,
),
]