From fc13ee348e909f1f46747c4fb0c5785e70699030 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Fri, 20 Mar 2026 00:52:17 +1100 Subject: [PATCH] Add additional migrations --- .../migrations/0004_auto_20260319_0640.py | 28 +++++++++++++++++++ .../migrations/0014_auto_20260319_0640.py | 23 +++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 vendor/symposion/symposion/proposals/migrations/0004_auto_20260319_0640.py create mode 100644 vendor/symposion/symposion/speakers/migrations/0014_auto_20260319_0640.py diff --git a/vendor/symposion/symposion/proposals/migrations/0004_auto_20260319_0640.py b/vendor/symposion/symposion/proposals/migrations/0004_auto_20260319_0640.py new file mode 100644 index 00000000..7b941103 --- /dev/null +++ b/vendor/symposion/symposion/proposals/migrations/0004_auto_20260319_0640.py @@ -0,0 +1,28 @@ +# Generated by Django 2.2.28 on 2026-03-19 06:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('symposion_proposals', '0003_auto_20170702_2250'), + ] + + operations = [ + migrations.AlterField( + model_name='proposalbase', + name='abstract', + field=models.TextField(help_text="This will appear in the conference programme. Up to about 500 words. This field supports Markdown, with limitations on allowed elements.", verbose_name='Abstract'), + ), + migrations.AlterField( + model_name='proposalbase', + name='private_abstract', + field=models.TextField(help_text="This will only be shown to organisers and reviewers. You should provide any details about your proposal that you don't want to be public here. This field supports Markdown, with limitations on allowed elements.", verbose_name='Private Abstract'), + ), + migrations.AlterField( + model_name='proposalbase', + name='technical_requirements', + field=models.TextField(blank=True, help_text="Speakers will be provided with: Internet access, power, projector, audio. If you require anything in addition, please list your technical requirements here. Such as: a static IP address, A/V equipment or will be demonstrating security-related techniques on the conference network. This field supports Markdown, with limitations on allowed elements.", verbose_name='Special Requirements'), + ), + ] diff --git a/vendor/symposion/symposion/speakers/migrations/0014_auto_20260319_0640.py b/vendor/symposion/symposion/speakers/migrations/0014_auto_20260319_0640.py new file mode 100644 index 00000000..4f0c76e9 --- /dev/null +++ b/vendor/symposion/symposion/speakers/migrations/0014_auto_20260319_0640.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2.28 on 2026-03-19 06:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('symposion_speakers', '0013_merge_20260219_2116'), + ] + + operations = [ + migrations.AlterField( + model_name='speaker', + name='biography', + field=models.TextField(blank=True, help_text="This will appear on the conference website and in the programme. Please write in the third person, eg 'Alice is a Moblin hacker...', 150-200 words. This field supports Markdown, with limitations on allowed elements.", verbose_name='Biography'), + ), + migrations.AlterField( + model_name='speaker', + name='experience', + field=models.TextField(blank=True, help_text="Have you had any experience presenting elsewhere? If so, we'd like to know. Anything you put here will only be seen by the organisers and reviewers; use it to convince them why they should accept your proposal. This field supports Markdown, with limitations on allowed elements.", verbose_name='Speaking experience'), + ), + ]