datatracker/ietf/meeting/migrations/0033_add_meeting_acknowlegements.py
Henrik Levkowetz 4d62fd0a9d Merged in [11770] from rjsparks@nostrum.com:
Merged from rcross: Add Introduction header to proceedings. Add Acknowlegements to the meeting model. Add a view for acknowlegements.
 - Legacy-Id: 11804
Note: SVN reference [11770] has been migrated to Git commit 0b196e5eb5
2016-08-17 15:44:21 +00:00

21 lines
556 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('meeting', '0032_reconstruct_bluesheet_docs_95through96'),
]
operations = [
migrations.AddField(
model_name='meeting',
name='acknowledgements',
field=models.TextField(help_text=b'Acknowledgements for use in meeting proceedings. Use ReStructuredText markup.', blank=True),
preserve_default=True,
),
]