You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
762 B
27 lines
762 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-07-22 18:31
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0019_article_likes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='likes',
|
|
name='user',
|
|
),
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='all_views',
|
|
field=models.IntegerField(blank=True, default=0, verbose_name='\u0412\u0441\u0435\u0433\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u043e\u0432'),
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Likes',
|
|
),
|
|
]
|
|
|