blog

0004_feeditem.py

1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.10 on 2018-04-09 18:30
3
from __future__ import unicode_literals
4
5
from django.db import migrations, models
6
7
8
class Migration(migrations.Migration):
9
10
    dependencies = [
11
        ('blog', '0003_comment'),
12
    ]
13
14
    operations = [
15
        migrations.CreateModel(
16
            name='FeedItem',
17
            fields=[
18
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
19
                ('title', models.CharField(max_length=64)),
20
                ('added', models.DateTimeField(auto_now_add=True)),
21
                ('description', models.CharField(max_length=400)),
22
                ('link', models.CharField(max_length=64)),
23
                ('soft_url', models.BooleanField(default=True)),
24
            ],
25
        ),
26
    ]
27