Skip to content
Snippets Groups Projects

Complete photos app functionality

Merged Ghost User requested to merge 2-photos into master
5 files
+ 92
35
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 26
0
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-08-04 08:17
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Album',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(max_length=200)),
('slug', models.SlugField()),
('dirname', models.CharField(max_length=200)),
('date', models.DateField()),
],
),
]
Loading