You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
drugs/core/migrations/0005_dosage_roa_timing_roa_...

31 lines
1.4 KiB
Python

# Generated by Django 4.2.8 on 2024-01-01 18:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0004_rename_common_dosage_common_lower_and_more'),
]
operations = [
migrations.AddField(
model_name='dosage',
name='roa',
field=models.CharField(choices=[('ORAL', 'Oral'), ('SMOKED', 'Smoked/vaped'), ('INSUFFLATED', 'Insufflated'), ('INJECTED', 'Injected'), ('SUBLINGUAL', 'Sublingual'), ('TRANSDERMAL', 'Transdermal'), ('RECTAL', 'Rectal')], default='ORAL', max_length=255),
preserve_default=False,
),
migrations.AddField(
model_name='timing',
name='roa',
field=models.CharField(choices=[('ORAL', 'Oral'), ('SMOKED', 'Smoked/vaped'), ('INSUFFLATED', 'Insufflated'), ('INJECTED', 'Injected'), ('SUBLINGUAL', 'Sublingual'), ('TRANSDERMAL', 'Transdermal'), ('RECTAL', 'Rectal')], default='ORAL', max_length=255),
preserve_default=False,
),
migrations.AlterField(
model_name='experiencedose',
name='roa',
field=models.CharField(choices=[('ORAL', 'Oral'), ('SMOKED', 'Smoked/vaped'), ('INSUFFLATED', 'Insufflated'), ('INJECTED', 'Injected'), ('SUBLINGUAL', 'Sublingual'), ('TRANSDERMAL', 'Transdermal'), ('RECTAL', 'Rectal')], max_length=255),
),
]