list medical card base
This commit is contained in:
1
alembic/README
Normal file
1
alembic/README
Normal file
@@ -0,0 +1 @@
|
||||
Generic single-database configuration.
|
||||
79
alembic/env.py
Normal file
79
alembic/env.py
Normal file
@@ -0,0 +1,79 @@
|
||||
from logging.config import fileConfig
|
||||
|
||||
from sqlalchemy import engine_from_config
|
||||
from sqlalchemy import pool
|
||||
|
||||
from alembic import context
|
||||
|
||||
from medical_info.db.models import Base
|
||||
# this is the Alembic Config object, which provides
|
||||
# access to the values within the .ini file in use.
|
||||
config = context.config
|
||||
|
||||
# Interpret the config file for Python logging.
|
||||
# This line sets up loggers basically.
|
||||
if config.config_file_name is not None:
|
||||
fileConfig(config.config_file_name)
|
||||
|
||||
# add your model's MetaData object here
|
||||
# for 'autogenerate' support
|
||||
# from myapp import mymodel
|
||||
# target_metadata = mymodel.Base.metadata
|
||||
target_metadata = Base.metadata
|
||||
|
||||
# other values from the config, defined by the needs of env.py,
|
||||
# can be acquired:
|
||||
# my_important_option = config.get_main_option("my_important_option")
|
||||
# ... etc.
|
||||
|
||||
|
||||
def run_migrations_offline() -> None:
|
||||
"""Run migrations in 'offline' mode.
|
||||
|
||||
This configures the context with just a URL
|
||||
and not an Engine, though an Engine is acceptable
|
||||
here as well. By skipping the Engine creation
|
||||
we don't even need a DBAPI to be available.
|
||||
|
||||
Calls to context.execute() here emit the given string to the
|
||||
script output.
|
||||
|
||||
"""
|
||||
url = config.get_main_option("sqlalchemy.url")
|
||||
context.configure(
|
||||
url=url,
|
||||
target_metadata=target_metadata,
|
||||
literal_binds=True,
|
||||
dialect_opts={"paramstyle": "named"},
|
||||
)
|
||||
|
||||
with context.begin_transaction():
|
||||
context.run_migrations()
|
||||
|
||||
|
||||
def run_migrations_online() -> None:
|
||||
"""Run migrations in 'online' mode.
|
||||
|
||||
In this scenario we need to create an Engine
|
||||
and associate a connection with the context.
|
||||
|
||||
"""
|
||||
connectable = engine_from_config(
|
||||
config.get_section(config.config_ini_section, {}),
|
||||
prefix="sqlalchemy.",
|
||||
poolclass=pool.NullPool,
|
||||
)
|
||||
|
||||
with connectable.connect() as connection:
|
||||
context.configure(
|
||||
connection=connection, target_metadata=target_metadata
|
||||
)
|
||||
|
||||
with context.begin_transaction():
|
||||
context.run_migrations()
|
||||
|
||||
|
||||
if context.is_offline_mode():
|
||||
run_migrations_offline()
|
||||
else:
|
||||
run_migrations_online()
|
||||
24
alembic/script.py.mako
Normal file
24
alembic/script.py.mako
Normal file
@@ -0,0 +1,24 @@
|
||||
"""${message}
|
||||
|
||||
Revision ID: ${up_revision}
|
||||
Revises: ${down_revision | comma,n}
|
||||
Create Date: ${create_date}
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
${imports if imports else ""}
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = ${repr(up_revision)}
|
||||
down_revision = ${repr(down_revision)}
|
||||
branch_labels = ${repr(branch_labels)}
|
||||
depends_on = ${repr(depends_on)}
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
${upgrades if upgrades else "pass"}
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
${downgrades if downgrades else "pass"}
|
||||
70
alembic/versions/8282d5b2badc_initial.py
Normal file
70
alembic/versions/8282d5b2badc_initial.py
Normal file
@@ -0,0 +1,70 @@
|
||||
"""initial
|
||||
|
||||
Revision ID: 8282d5b2badc
|
||||
Revises:
|
||||
Create Date: 2023-07-21 22:53:46.768440
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects import postgresql
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '8282d5b2badc'
|
||||
down_revision = None
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.create_table('medical_cards',
|
||||
sa.Column('number', sa.String(length=100), nullable=False),
|
||||
sa.Column('confidant_persons', postgresql.ARRAY(sa.UUID()), nullable=True),
|
||||
sa.Column('id', sa.UUID(), nullable=False),
|
||||
sa.Column('created_at', sa.TIMESTAMP(), nullable=False),
|
||||
sa.Column('updated_at', sa.TIMESTAMP(), nullable=False),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
op.create_index(op.f('ix_medical_cards_id'), 'medical_cards', ['id'], unique=False)
|
||||
op.create_table('checkups',
|
||||
sa.Column('medical_card_id', sa.UUID(), nullable=False),
|
||||
sa.Column('medic_id', sa.UUID(), nullable=True),
|
||||
sa.Column('claims', postgresql.ARRAY(sa.String()), nullable=True),
|
||||
sa.Column('allergies', postgresql.ARRAY(sa.String()), nullable=True),
|
||||
sa.Column('diseases', postgresql.ARRAY(sa.String()), nullable=True),
|
||||
sa.Column('medicines', postgresql.ARRAY(sa.String()), nullable=True),
|
||||
sa.Column('disease_process', sa.Text(), nullable=True),
|
||||
sa.Column('visual_inspection', postgresql.ARRAY(sa.String()), nullable=True),
|
||||
sa.Column('dental_formula', postgresql.JSONB(astext_type=sa.Text()), nullable=True),
|
||||
sa.Column('dental_formula_ext', postgresql.JSONB(astext_type=sa.Text()), nullable=True),
|
||||
sa.Column('id', sa.UUID(), nullable=False),
|
||||
sa.Column('created_at', sa.TIMESTAMP(), nullable=False),
|
||||
sa.Column('updated_at', sa.TIMESTAMP(), nullable=False),
|
||||
sa.ForeignKeyConstraint(['medical_card_id'], ['medical_cards.id'], ),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
op.create_index(op.f('ix_checkups_id'), 'checkups', ['id'], unique=False)
|
||||
op.create_table('health_maps',
|
||||
sa.Column('comment', sa.Text(), nullable=True),
|
||||
sa.Column('attachments', postgresql.ARRAY(sa.String()), nullable=True),
|
||||
sa.Column('medical_card_id', sa.UUID(), nullable=False),
|
||||
sa.Column('id', sa.UUID(), nullable=False),
|
||||
sa.Column('created_at', sa.TIMESTAMP(), nullable=False),
|
||||
sa.Column('updated_at', sa.TIMESTAMP(), nullable=False),
|
||||
sa.ForeignKeyConstraint(['medical_card_id'], ['medical_cards.id'], ),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
op.create_index(op.f('ix_health_maps_id'), 'health_maps', ['id'], unique=False)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_index(op.f('ix_health_maps_id'), table_name='health_maps')
|
||||
op.drop_table('health_maps')
|
||||
op.drop_index(op.f('ix_checkups_id'), table_name='checkups')
|
||||
op.drop_table('checkups')
|
||||
op.drop_index(op.f('ix_medical_cards_id'), table_name='medical_cards')
|
||||
op.drop_table('medical_cards')
|
||||
# ### end Alembic commands ###
|
||||
28
alembic/versions/aa4d531271c0_add_person_id.py
Normal file
28
alembic/versions/aa4d531271c0_add_person_id.py
Normal file
@@ -0,0 +1,28 @@
|
||||
"""add person_id
|
||||
|
||||
Revision ID: aa4d531271c0
|
||||
Revises: 8282d5b2badc
|
||||
Create Date: 2023-07-22 00:58:19.689019
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'aa4d531271c0'
|
||||
down_revision = '8282d5b2badc'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('medical_cards', sa.Column('person_id', sa.UUID(), nullable=False))
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('medical_cards', 'person_id')
|
||||
# ### end Alembic commands ###
|
||||
Reference in New Issue
Block a user