From ebbf8f079c67c142ca923faf743ba5c1e10d0a27 Mon Sep 17 00:00:00 2001
From: Tobias <tobias@localhost.localdomain>
Date: Sat, 29 Sep 2018 17:31:16 +1200
Subject: [PATCH] Change models for 2019, closes #135

---
 .../registrasion/migrations/0001_initial.py   |  1 +
 .../migrations/0010_auto_20180929_1530.py     | 20 +++++++++++++++++++
 pinaxcon/registrasion/models.py               |  4 ++--
 3 files changed, 23 insertions(+), 2 deletions(-)
 create mode 100644 pinaxcon/registrasion/migrations/0010_auto_20180929_1530.py

diff --git a/pinaxcon/registrasion/migrations/0001_initial.py b/pinaxcon/registrasion/migrations/0001_initial.py
index 58aefa6b..166668e0 100644
--- a/pinaxcon/registrasion/migrations/0001_initial.py
+++ b/pinaxcon/registrasion/migrations/0001_initial.py
@@ -26,6 +26,7 @@ _PAST_EVENTS = (
     (2015, "2015 Auckland"),
     (2016, "2016 Geelong"),
     (2017, "2017 Hobart"),
+    (2018, "2018 Sydney"),
 )
 
 
diff --git a/pinaxcon/registrasion/migrations/0010_auto_20180929_1530.py b/pinaxcon/registrasion/migrations/0010_auto_20180929_1530.py
new file mode 100644
index 00000000..06827741
--- /dev/null
+++ b/pinaxcon/registrasion/migrations/0010_auto_20180929_1530.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.15 on 2018-09-29 05:30
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('pinaxcon_registrasion', '0009_attendeeprofile_children'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='attendeeprofile',
+            name='lca_chat',
+            field=models.BooleanField(help_text='lca2019-chat is a high-traffic mailing list used by attendees during the week of the conference for general discussion.', verbose_name='Subscribe to the lca2019-chat list'),
+        ),
+    ]
diff --git a/pinaxcon/registrasion/models.py b/pinaxcon/registrasion/models.py
index f17ec070..aa211a10 100644
--- a/pinaxcon/registrasion/models.py
+++ b/pinaxcon/registrasion/models.py
@@ -191,8 +191,8 @@ class AttendeeProfile(rego.AttendeeProfileBase):
     )
 
     lca_chat = models.BooleanField(
-        verbose_name="Subscribe to the lca2018-chat list",
-        help_text="lca2018-chat is a high-traffic mailing list used by "
+        verbose_name="Subscribe to the lca2019-chat list",
+        help_text="lca2019-chat is a high-traffic mailing list used by "
                   "attendees during the week of the conference for general "
                   "discussion.",
         blank=True,