--- /dev/null
+# Generated by Django 4.0.3 on 2022-03-04 16:47
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('climbing', '0004_add_todos_and_ticks'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='problem',
+ name='mountain_project',
+ field=models.URLField(blank=True, null=True),
+ ),
+ migrations.AddField(
+ model_name='route',
+ name='mountain_project',
+ field=models.URLField(blank=True, null=True),
+ ),
+ ]
related_name='routes',
)
name = models.CharField(max_length=64)
+ mountain_project = models.URLField(blank=True, null=True)
notes = models.TextField(blank=True, null=True)
def __str__(self):
name = models.CharField(max_length=64)
difficulty = models.CharField(max_length=3, choices=BOULDER_DIFFICULTY_CHOICES)
safety = models.CharField(max_length=4, choices=SAFETY_CHOICES)
+ mountain_project = models.URLField(blank=True, null=True)
notes = models.TextField(blank=True, null=True)
def __str__(self):