Add additional migrations

This commit is contained in:
Ben Sturmfels 2026-03-20 00:52:17 +11:00
parent e5cd53a1f5
commit fc13ee348e
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0
2 changed files with 51 additions and 0 deletions

View file

@ -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 <a href='https://daringfireball.net/projects/markdown/syntax' target='_blank'>Markdown</a>, 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 <a href='https://daringfireball.net/projects/markdown/syntax' target='_blank'>Markdown</a>, 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 <a href='https://daringfireball.net/projects/markdown/syntax' target='_blank'>Markdown</a>, with limitations on allowed elements.", verbose_name='Special Requirements'),
),
]

View file

@ -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 <a href='https://daringfireball.net/projects/markdown/syntax' target='_blank'>Markdown</a>, 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 <a href='https://daringfireball.net/projects/markdown/syntax' target='_blank'>Markdown</a>, with limitations on allowed elements.", verbose_name='Speaking experience'),
),
]