23 lines
515 B
Python
23 lines
515 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-06-07 14:12
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0003_auto_20170607_1643"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="feed",
|
|
name="tags",
|
|
field=models.ManyToManyField(
|
|
blank=True, related_name="news", to="webapp.Tag"
|
|
),
|
|
),
|
|
]
|