1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# 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'),
),
]
|