# Generated by Django 2.1.1 on 2019-01-31 08:56 from django.db import migrations, models import django.db.models.deletion import taggit.managers class Migration(migrations.Migration): initial = True dependencies = [ ('taxonomy', '0001_initial'), ] operations = [ migrations.CreateModel( name='Editor', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('first_name', models.CharField(max_length=250)), ('last_name', models.CharField(max_length=250)), ('email', models.CharField(blank=True, max_length=250)), ('phone', models.CharField(blank=True, max_length=250)), ('twitter', models.CharField(blank=True, max_length=250)), ('slug', models.SlugField(blank=True)), ('notes', models.TextField(blank=True)), ('date_created', models.DateTimeField(auto_now_add=True)), ('date_updated', models.DateTimeField(auto_now=True)), ], options={ 'ordering': ('-last_name', '-date_created'), }, ), migrations.CreateModel( name='Pitch', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=250)), ('pitch', models.TextField()), ('slug', models.SlugField(blank=True)), ('accepted', models.BooleanField(blank=True, null=True)), ('date_sent', models.DateTimeField(blank=True, null=True)), ('date_created', models.DateTimeField(auto_now_add=True)), ('date_updated', models.DateTimeField(auto_now=True)), ('editor', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='publications.Editor')), ], options={ 'ordering': ('-title', '-date_sent'), }, ), migrations.CreateModel( name='Publication', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=250)), ('slug', models.SlugField(blank=True, unique_for_date='pub_date')), ('notes', models.TextField(blank=True)), ('status', models.IntegerField(choices=[(0, 'Have Published With'), (1, 'Published')], default=0)), ('date_created', models.DateTimeField(auto_now_add=True)), ('date_updated', models.DateTimeField(auto_now=True)), ('tags', taggit.managers.TaggableManager(blank=True, help_text='Topics Covered', through='taxonomy.TaggedItems', to='taxonomy.LuxTag', verbose_name='Tags')), ], options={ 'ordering': ('-name', '-date_created'), }, ), migrations.AddField( model_name='editor', name='publication', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='publications.Publication'), ), ]