# -*- coding: utf-8 -*- # Generated by Django 1.9 on 2016-03-09 10:13 from __future__ import unicode_literals import django.contrib.gis.db.models.fields from django.db import migrations, models import django.db.models.deletion import jrnl.models class Migration(migrations.Migration): initial = True dependencies = [ ('locations', '__first__'), ('photos', '0003_luxgallery_caption_style'), ] operations = [ migrations.CreateModel( name='Entry', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=200)), ('slug', models.SlugField(unique_for_date='pub_date')), ('body_html', models.TextField(blank=True)), ('body_markdown', models.TextField()), ('dek', models.TextField(blank=True, null=True)), ('pub_date', models.DateTimeField(verbose_name='Date published')), ('enable_comments', models.BooleanField(default=False)), ('point', django.contrib.gis.db.models.fields.PointField(blank=True, null=True, srid=4326)), ('status', models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=0)), ('image', models.FileField(blank=True, help_text='should be 205px high', null=True, upload_to=jrnl.models.get_upload_path)), ('thumbnail', models.FileField(blank=True, help_text='should be 160 wide', null=True, upload_to=jrnl.models.get_tn_path)), ('meta_description', models.CharField(blank=True, max_length=256, null=True)), ('template_name', models.IntegerField(choices=[(0, 'single'), (1, 'double'), (2, 'single-dark'), (3, 'double-dark'), (4, 'bigimg'), (5, 'bigimg-dark')], default=0)), ('location', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='locations.Location')), ('photo_gallery', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='photos.PhotoGallery', verbose_name='photo set')), ], options={ 'verbose_name_plural': 'entries', 'get_latest_by': 'pub_date', 'ordering': ('-pub_date',), }, ), migrations.CreateModel( name='EntryAside', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=200)), ('body', models.TextField(blank=True, null=True)), ('entry', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='jrnl.Entry')), ], ), migrations.CreateModel( name='HomepageCurrator', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('alt_text', models.CharField(max_length=200)), ('image_base_url', models.CharField(max_length=200)), ('tag_line', models.CharField(max_length=200)), ('template_name', models.CharField(help_text='full path', max_length=200)), ('banner', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='banner', to='jrnl.Entry')), ('entry_list', models.ManyToManyField(to='jrnl.Entry')), ], ), migrations.CreateModel( name='PostImage', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=100)), ('image', models.ImageField(upload_to='/Users/sng/Sites/luxagraf/site/media/images/2016')), ], ), ]