parent
502d087be7
commit
390ffb371b
3 changed files with 36 additions and 1 deletions
@ -0,0 +1,17 @@ |
||||
# Generated by Django 2.0.2 on 2018-02-15 15:03 |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('content', '0013_auto_20180212_0537'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterModelOptions( |
||||
name='content', |
||||
options={'ordering': ('position', '-created_at'), 'verbose_name': 'Контент', 'verbose_name_plural': 'Контент'}, |
||||
), |
||||
] |
||||
@ -0,0 +1,18 @@ |
||||
# Generated by Django 2.0.2 on 2018-02-15 15:03 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('course', '0033_auto_20180214_1346'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='course', |
||||
name='slug', |
||||
field=models.SlugField(allow_unicode=True, blank=True, max_length=100, null=True, unique=True), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue