added organ api
This commit is contained in:
36
backend/app/alembic/versions/e77992962f85_add_organ.py
Normal file
36
backend/app/alembic/versions/e77992962f85_add_organ.py
Normal file
@@ -0,0 +1,36 @@
|
||||
"""add organ
|
||||
|
||||
Revision ID: e77992962f85
|
||||
Revises: 7acc8c28d84c
|
||||
Create Date: 2024-10-26 19:33:40.557599
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
import sqlmodel.sql.sqltypes
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'e77992962f85'
|
||||
down_revision = '7acc8c28d84c'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.create_table('organ',
|
||||
sa.Column('description', sqlmodel.sql.sqltypes.AutoString(length=1024), nullable=False),
|
||||
sa.Column('image', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=True),
|
||||
sa.Column('title', sqlmodel.sql.sqltypes.AutoString(length=255), nullable=False),
|
||||
sa.Column('index', sa.Integer(), nullable=False),
|
||||
sa.Column('id', sa.Uuid(), nullable=False),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_table('organ')
|
||||
# ### end Alembic commands ###
|
Reference in New Issue
Block a user