23 lines
613 B
Python
23 lines
613 B
Python
# Generated by Django 3.0.7 on 2024-05-29 14:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('registry', '0002_auto_20240529_1321'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='pathologyreport',
|
|
name='PersonID',
|
|
field=models.CharField(db_index=True, max_length=10, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='xraytextreport',
|
|
name='PersonID',
|
|
field=models.CharField(db_index=True, max_length=10, null=True),
|
|
),
|
|
]
|