+# Generated by Django 3.0.4 on 2020-10-27 14:16
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('catalogue', '0019_auto_20201027_1331'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Epoch',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('wikidata', models.CharField(blank=True, help_text='If you have a Wikidata ID, like "Q1337", enter it and save.', max_length=255)),
+ ('name', models.CharField(max_length=255)),
+ ('slug', models.SlugField(max_length=255, unique=True)),
+ ],
+ options={
+ 'abstract': False,
+ },
+ ),
+ migrations.CreateModel(
+ name='Genre',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('wikidata', models.CharField(blank=True, help_text='If you have a Wikidata ID, like "Q1337", enter it and save.', max_length=255)),
+ ('name', models.CharField(max_length=255)),
+ ('slug', models.SlugField(max_length=255, unique=True)),
+ ],
+ options={
+ 'abstract': False,
+ },
+ ),
+ migrations.CreateModel(
+ name='Kind',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('wikidata', models.CharField(blank=True, help_text='If you have a Wikidata ID, like "Q1337", enter it and save.', max_length=255)),
+ ('name', models.CharField(max_length=255)),
+ ('slug', models.SlugField(max_length=255, unique=True)),
+ ],
+ options={
+ 'abstract': False,
+ },
+ ),
+ migrations.AddField(
+ model_name='book',
+ name='epochs',
+ field=models.ManyToManyField(blank=True, to='catalogue.Epoch'),
+ ),
+ migrations.AddField(
+ model_name='book',
+ name='genres',
+ field=models.ManyToManyField(blank=True, to='catalogue.Genre'),
+ ),
+ migrations.AddField(
+ model_name='book',
+ name='kinds',
+ field=models.ManyToManyField(blank=True, to='catalogue.Kind'),
+ ),
+ ]