X-Git-Url: https://code.kerkeslager.com/?a=blobdiff_plain;ds=inline;f=src%2Ftraining%2Fmodels.py;h=618588d52ee555b5ea09dc4200fadc3ae0456928;hb=3977607665b62dae546113a3888fd3588d743283;hp=71a836239075aa6e6e4ecb700e9c42c95c022d91;hpb=1bc6954655e77c96abc15240b495331dfb0dd1a8;p=climbing.kerkeslager.com diff --git a/src/training/models.py b/src/training/models.py index 71a8362..618588d 100644 --- a/src/training/models.py +++ b/src/training/models.py @@ -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()