Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.80 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3.  
  4. from django.db import models, migrations
  5.  
  6.  
  7. class Migration(migrations.Migration):
  8.  
  9.     dependencies = [
  10.         ('courses', '0001_initial'),
  11.     ]
  12.  
  13.     operations = [
  14.         migrations.AlterField(
  15.             model_name='course',
  16.             name='description',
  17.             field=models.TextField(help_text='\u043f\u043e\u043b\u043d\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435', null=True, blank=True),
  18.         ),
  19.         migrations.AlterField(
  20.             model_name='course',
  21.             name='short_description',
  22.             field=models.CharField(help_text='\u043a\u0440\u0430\u0442\u043a\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435', max_length=255, null=True, blank=True),
  23.         ),
  24.     ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement