summaryrefslogtreecommitdiff
path: root/postgresqleu/confreg/migrations/0051_roomcomment.py
blob: f22c3de92413f612b59996dfcd9f8112dbe92538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-08-01 12:36
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('confreg', '0050_lowercase_email'),
    ]

    operations = [
        migrations.AddField(
            model_name='room',
            name='comment',
            field=models.CharField(blank=True, max_length=200, help_text='Internal comment for planning'),
        ),
    ]