summaryrefslogtreecommitdiff
path: root/program/migrations/0006_note_remove_cba_entry_id.py
blob: e16da83733961c421143b1b4c5d05758f35feed1 (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, models


class Migration(migrations.Migration):

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

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