hackspace/mhackspace/feeds/migrations/0001_initial.py

27 lines
730 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2017-01-04 14:04
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Feed',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('url', models.CharField(max_length=255)),
('author', models.CharField(max_length=255)),
('tags', models.CharField(max_length=255)),
('image', models.ImageField(upload_to='')),
],
),
]