# Generated by Django 4.2.7 on 2024-02-16 07:21

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('trainer', '0014_trainerfriends'),
    ]

    operations = [
        migrations.CreateModel(
            name='Assesments',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=200, null=True)),
                ('completion_time', models.CharField(max_length=200, null=True)),
                ('repetitions', models.CharField(max_length=200, null=True)),
                ('results', models.CharField(max_length=200, null=True)),
                ('notes', models.CharField(max_length=200, null=True)),
                ('next_assessment_date', models.CharField(max_length=200, null=True)),
                ('images', models.TextField(null=True)),
                ('videos', models.TextField(null=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
                ('exercise', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='exercise', to='trainer.exercise')),
            ],
            options={
                'db_table': 'assessments',
            },
        ),
    ]
