datatracker/ietf/meeting/migrations/0009_add_agenda_info_note.py
Henrik Levkowetz 726fcbf27d Removed all __future__ imports.
- Legacy-Id: 17391
2020-03-05 23:53:42 +00:00

27 lines
956 B
Python

# Copyright The IETF Trust 2018-2020, All Rights Reserved
# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2018-10-09 14:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('meeting', '0008_rename_meeting_agenda_note'),
]
operations = [
migrations.AddField(
model_name='meeting',
name='agenda_info_note',
field=models.TextField(blank=True, help_text='Text in this field will be placed at the top of the html agenda page for the meeting. HTML can be used, but will not be validated.'),
),
migrations.AlterField(
model_name='meeting',
name='agenda_warning_note',
field=models.TextField(blank=True, help_text='Text in this field will be placed more prominently at the top of the html agenda page for the meeting. HTML can be used, but will not be validated.'),
),
]