New migration to add videoconferences_extra_data field in Project and ProjectTenmplate
parent
181a3858d1
commit
c13dcb7757
|
@ -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,
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue