37560-vm/core/migrations/0001_initial.py
2026-01-19 01:23:16 +00:00

42 lines
1.5 KiB
Python

# Generated by Django 5.2.7 on 2026-01-19 00:07
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Program',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('patient_name', models.CharField(max_length=255)),
('patient_email', models.EmailField(max_length=254)),
('clinician_name', models.CharField(max_length=255)),
('created_at', models.DateTimeField(auto_now_add=True)),
('updated_at', models.DateTimeField(auto_now=True)),
],
),
migrations.CreateModel(
name='Exercise',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('youtube_url', models.URLField()),
('title', models.CharField(blank=True, max_length=255)),
('thumbnail_url', models.URLField(blank=True)),
('notes', models.TextField(blank=True)),
('order', models.PositiveIntegerField(default=0)),
('program', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='exercises', to='core.program')),
],
options={
'ordering': ['order'],
},
),
]