21 lines
449 B
Python
21 lines
449 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
# Generated by Django 1.10.4 on 2017-01-04 12:47
|
||
|
|
from __future__ import unicode_literals
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('cms', '0008_document'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='module',
|
||
|
|
name='description',
|
||
|
|
field=models.TextField(blank=True, default=''),
|
||
|
|
),
|
||
|
|
]
|