Skip to content
Snippets Groups Projects
Commit 2cd20efe authored by hollum's avatar hollum
Browse files

trying to fix bug on heroku backend

parent c7e546f1
No related branches found
No related tags found
No related merge requests found
Pipeline #162424 passed with stages
in 1 minute and 47 seconds
# 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()),
],
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment