From 2cd20efefdaeef6a0fa504f099070b792cfe7569 Mon Sep 17 00:00:00 2001 From: hollum <hollum@hotmail.com> Date: Mon, 14 Mar 2022 20:55:52 +0100 Subject: [PATCH] trying to fix bug on heroku backend --- .../secfit/workouts/migrations/0005_goal.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 backend/secfit/workouts/migrations/0005_goal.py diff --git a/backend/secfit/workouts/migrations/0005_goal.py b/backend/secfit/workouts/migrations/0005_goal.py new file mode 100644 index 0000000..96bcf64 --- /dev/null +++ b/backend/secfit/workouts/migrations/0005_goal.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1 on 2022-03-14 19:55 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('workouts', '0004_auto_20211020_0950'), + ] + + operations = [ + migrations.CreateModel( + name='Goal', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=100)), + ('description', models.TextField()), + ('date', models.DateTimeField()), + ('exercise', models.TextField()), + ], + ), + ] -- GitLab