Skip to content
Snippets Groups Projects
Commit b1b142c2 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

added is_active model field

parent b8d4c162
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0004_show_is_active'),
]
operations = [
migrations.AddField(
model_name='programslot',
name='is_active',
field=models.BooleanField(default=True, verbose_name='Is active', editable=False),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment