Jarvis/jarvis/followup/migrations/0013_chronodetails.py

29 lines
928 B
Python

# Generated by Django 3.2.8 on 2022-01-20 17:20
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('followup', '0012_plan'),
]
operations = [
migrations.CreateModel(
name='ChronoDetails',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('order', models.SmallIntegerField()),
('value', models.DecimalField(decimal_places=3, max_digits=5)),
('chrono', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='followup.chrono')),
],
options={
'verbose_name': 'Chronos Details',
'verbose_name_plural': 'Chronos Details',
'ordering': ['chrono', 'order'],
},
),
]