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.
22 lines
724 B
22 lines
724 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.2 on 2016-07-19 19:38
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('library', '0018_remove_article_likes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='likes',
|
|
field=models.ManyToManyField(blank=True, editable=False, max_length=255, null=True, related_name='acticle_likes', to=settings.AUTH_USER_MODEL, verbose_name='\u041b\u0430\u0439\u043a\u0438'),
|
|
),
|
|
]
|
|
|