bornhack-website/src/teams/migrations/0050_team_guide.py

22 lines
701 B
Python
Raw Normal View History

# Generated by Django 2.1.5 on 2019-03-12 10:00
2017-11-25 21:35:48 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("teams", "0049_auto_20180815_1119")]
2017-11-25 21:35:48 +00:00
operations = [
migrations.AddField(
2019-06-16 12:32:24 +00:00
model_name="team",
name="guide",
field=models.TextField(
blank=True,
default="\n# Preparations\n\n...\n\n# Camp setup\n\n...\n\n# During camp\n\n...\n\n# Takedown\n\n...\n\n# Notes for next year\n\n 1. Remember to take notes\n 1. ...\n",
help_text="HowTo guide for this year (and next year)",
verbose_name="team guide (Markdown)",
),
)
2017-11-25 21:35:48 +00:00
]