forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0034_schedule_notes.py
More file actions
28 lines (23 loc) · 850 Bytes
/
0034_schedule_notes.py
File metadata and controls
28 lines (23 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Generated by Django 2.0.13 on 2020-07-01 02:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('meeting', '0033_session_tombstone_for'),
]
operations = [
migrations.AddField(
model_name='schedule',
name='notes',
field=models.TextField(blank=True),
),
migrations.AlterField(
model_name='schedule',
name='public',
field=models.BooleanField(default=True, help_text='Allow others to see this agenda.'),
),
migrations.AlterField(
model_name='schedule',
name='visible',
field=models.BooleanField(default=True, help_text='Show in the list of possible agendas for the meeting.', verbose_name='Show in agenda list'),
),
]