142 lines
9.2 KiB
Python
142 lines
9.2 KiB
Python
# Generated by Django 5.0.14 on 2026-01-05 10:43
|
|
|
|
import django.db.models.deletion
|
|
import uuid
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Hospital',
|
|
fields=[
|
|
('created_at', models.DateTimeField(auto_now_add=True, db_index=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=200)),
|
|
('name_ar', models.CharField(blank=True, max_length=200, verbose_name='Name (Arabic)')),
|
|
('code', models.CharField(db_index=True, max_length=50, unique=True)),
|
|
('address', models.TextField(blank=True)),
|
|
('city', models.CharField(blank=True, max_length=100)),
|
|
('phone', models.CharField(blank=True, max_length=20)),
|
|
('email', models.EmailField(blank=True, max_length=254)),
|
|
('status', models.CharField(choices=[('active', 'Active'), ('inactive', 'Inactive'), ('pending', 'Pending'), ('completed', 'Completed'), ('cancelled', 'Cancelled')], db_index=True, default='active', max_length=20)),
|
|
('license_number', models.CharField(blank=True, max_length=100)),
|
|
('capacity', models.IntegerField(blank=True, help_text='Bed capacity', null=True)),
|
|
('metadata', models.JSONField(blank=True, default=dict, help_text='Hospital configuration settings')),
|
|
],
|
|
options={
|
|
'verbose_name_plural': 'Hospitals',
|
|
'ordering': ['name'],
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name='Organization',
|
|
fields=[
|
|
('created_at', models.DateTimeField(auto_now_add=True, db_index=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=200)),
|
|
('name_ar', models.CharField(blank=True, max_length=200, verbose_name='Name (Arabic)')),
|
|
('code', models.CharField(db_index=True, max_length=50, unique=True)),
|
|
('phone', models.CharField(blank=True, max_length=20)),
|
|
('email', models.EmailField(blank=True, max_length=254)),
|
|
('address', models.TextField(blank=True)),
|
|
('city', models.CharField(blank=True, max_length=100)),
|
|
('status', models.CharField(choices=[('active', 'Active'), ('inactive', 'Inactive'), ('pending', 'Pending'), ('completed', 'Completed'), ('cancelled', 'Cancelled')], db_index=True, default='active', max_length=20)),
|
|
('logo', models.ImageField(blank=True, null=True, upload_to='organizations/logos/')),
|
|
('website', models.URLField(blank=True)),
|
|
('license_number', models.CharField(blank=True, max_length=100)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Organization',
|
|
'verbose_name_plural': 'Organizations',
|
|
'ordering': ['name'],
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name='Department',
|
|
fields=[
|
|
('created_at', models.DateTimeField(auto_now_add=True, db_index=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=200)),
|
|
('name_ar', models.CharField(blank=True, max_length=200, verbose_name='Name (Arabic)')),
|
|
('code', models.CharField(db_index=True, max_length=50)),
|
|
('phone', models.CharField(blank=True, max_length=20)),
|
|
('email', models.EmailField(blank=True, max_length=254)),
|
|
('location', models.CharField(blank=True, help_text='Building/Floor/Room', max_length=200)),
|
|
('status', models.CharField(choices=[('active', 'Active'), ('inactive', 'Inactive'), ('pending', 'Pending'), ('completed', 'Completed'), ('cancelled', 'Cancelled')], db_index=True, default='active', max_length=20)),
|
|
('manager', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='managed_departments', to=settings.AUTH_USER_MODEL)),
|
|
('parent', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='sub_departments', to='organizations.department')),
|
|
('hospital', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='departments', to='organizations.hospital')),
|
|
],
|
|
options={
|
|
'ordering': ['hospital', 'name'],
|
|
'unique_together': {('hospital', 'code')},
|
|
},
|
|
),
|
|
migrations.AddField(
|
|
model_name='hospital',
|
|
name='organization',
|
|
field=models.ForeignKey(blank=True, help_text='Parent organization (null for backward compatibility)', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='hospitals', to='organizations.organization'),
|
|
),
|
|
migrations.CreateModel(
|
|
name='Patient',
|
|
fields=[
|
|
('created_at', models.DateTimeField(auto_now_add=True, db_index=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('mrn', models.CharField(db_index=True, max_length=50, unique=True, verbose_name='Medical Record Number')),
|
|
('national_id', models.CharField(blank=True, db_index=True, max_length=50)),
|
|
('first_name', models.CharField(max_length=100)),
|
|
('last_name', models.CharField(max_length=100)),
|
|
('first_name_ar', models.CharField(blank=True, max_length=100)),
|
|
('last_name_ar', models.CharField(blank=True, max_length=100)),
|
|
('date_of_birth', models.DateField(blank=True, null=True)),
|
|
('gender', models.CharField(blank=True, choices=[('male', 'Male'), ('female', 'Female'), ('other', 'Other')], max_length=10)),
|
|
('phone', models.CharField(blank=True, max_length=20)),
|
|
('email', models.EmailField(blank=True, max_length=254)),
|
|
('address', models.TextField(blank=True)),
|
|
('city', models.CharField(blank=True, max_length=100)),
|
|
('status', models.CharField(choices=[('active', 'Active'), ('inactive', 'Inactive'), ('pending', 'Pending'), ('completed', 'Completed'), ('cancelled', 'Cancelled')], db_index=True, default='active', max_length=20)),
|
|
('primary_hospital', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='patients', to='organizations.hospital')),
|
|
],
|
|
options={
|
|
'ordering': ['last_name', 'first_name'],
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name='Staff',
|
|
fields=[
|
|
('created_at', models.DateTimeField(auto_now_add=True, db_index=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('first_name', models.CharField(max_length=100)),
|
|
('last_name', models.CharField(max_length=100)),
|
|
('first_name_ar', models.CharField(blank=True, max_length=100)),
|
|
('last_name_ar', models.CharField(blank=True, max_length=100)),
|
|
('staff_type', models.CharField(choices=[('physician', 'Physician'), ('nurse', 'Nurse'), ('admin', 'Administrative'), ('other', 'Other')], max_length=20)),
|
|
('job_title', models.CharField(max_length=200)),
|
|
('license_number', models.CharField(blank=True, max_length=100, null=True, unique=True)),
|
|
('specialization', models.CharField(blank=True, max_length=200)),
|
|
('employee_id', models.CharField(db_index=True, max_length=50, unique=True)),
|
|
('status', models.CharField(choices=[('active', 'Active'), ('inactive', 'Inactive'), ('pending', 'Pending'), ('completed', 'Completed'), ('cancelled', 'Cancelled')], default='active', max_length=20)),
|
|
('department', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='organizations.department')),
|
|
('hospital', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='staff', to='organizations.hospital')),
|
|
('user', models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='staff_profile', to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
]
|