Add a basic index and some models for each area
[climbing.kerkeslager.com] / src / training / models.py
index 71a8362..618588d 100644 (file)
@@ -1,3 +1,5 @@
 from django.db import models
 
-# Create your models here.
+class Exercise(models.Model):
+    name = models.CharField(max_length=64)
+    notes = models.TextField()