le75
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

0005_teacher_slug.py
text/x-python

Download raw (431 bytes)

# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('course', '0004_teacher_department'),
    ]

    operations = [
        migrations.AddField(
            model_name='teacher',
            name='slug',
            field=models.CharField(null=True, verbose_name='slug', max_length=100),
        ),
    ]