From b9e47d9daa160383af4e154ff99566f54b714f75 Mon Sep 17 00:00:00 2001
From: Tobias <tobias@localhost.localdomain>
Date: Wed, 24 Oct 2018 20:03:06 +1300
Subject: [PATCH] Add missing migration

---
 .../migrations/0014_securityproposal.py       | 30 +++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 pinaxcon/proposals/migrations/0014_securityproposal.py

diff --git a/pinaxcon/proposals/migrations/0014_securityproposal.py b/pinaxcon/proposals/migrations/0014_securityproposal.py
new file mode 100644
index 00000000..a9919840
--- /dev/null
+++ b/pinaxcon/proposals/migrations/0014_securityproposal.py
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.15 on 2018-10-24 07:02
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('symposion_proposals', '0003_auto_20170702_2250'),
+        ('proposals', '0013_auto_20181023_1914'),
+    ]
+
+    operations = [
+        migrations.CreateModel(
+            name='SecurityProposal',
+            fields=[
+                ('proposalbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='symposion_proposals.ProposalBase')),
+                ('target_audience', models.IntegerField(choices=[(1, 'User'), (2, 'Business'), (3, 'Community'), (4, 'Developer')])),
+                ('recording_release', models.BooleanField(default=True, help_text="I allow Linux Australia to release any recordings of presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>")),
+                ('materials_release', models.BooleanField(default=True, help_text="I allow Linux Australia to release any other material (such as slides) from presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/3.0/au/deed.en'> Creative Commons Attribution-Share Alike Australia 3.0 Licence</a>")),
+            ],
+            options={
+                'verbose_name': 'Security, Identity and Privacy Miniconf Proposal',
+            },
+            bases=('symposion_proposals.proposalbase',),
+        ),
+    ]