summaryrefslogtreecommitdiff
path: root/program/migrations/0006_note_remove_cba_entry_id.py
blob: d04be5732e78e534bbe00d36d88fa86c766959ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('program', '0005_programslot_is_active'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='note',
            name='cba_entry_id',
        ),
    ]