Add migration for Exception
This commit is contained in:
parent
3fa765356a
commit
730c7d33c1
@ -0,0 +1,36 @@
|
||||
"""create exceptions table
|
||||
|
||||
Revision ID: a2b3c4d5e6f7
|
||||
Revises: 0001
|
||||
Create Date: 2024-03-26 12:00:00.000000
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects.postgresql import UUID
|
||||
from sqlalchemy.sql import func
|
||||
|
||||
# revision identifiers
|
||||
revision = 'a2b3c4d5e6f7'
|
||||
down_revision = '0001'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
def upgrade():
|
||||
op.create_table(
|
||||
'exceptions',
|
||||
sa.Column('id', UUID(as_uuid=True), primary_key=True),
|
||||
sa.Column('error_code', sa.String(50), nullable=False),
|
||||
sa.Column('message', sa.String(255), nullable=False),
|
||||
sa.Column('details', sa.Text, nullable=True),
|
||||
sa.Column('stack_trace', sa.Text, nullable=True),
|
||||
sa.Column('source', sa.String(100), nullable=False),
|
||||
sa.Column('created_at', sa.DateTime, server_default=sa.func.now()),
|
||||
sa.Column('updated_at', sa.DateTime, server_default=sa.func.now(), onupdate=sa.func.now())
|
||||
)
|
||||
|
||||
# Create index on error_code for faster lookups
|
||||
op.create_index('ix_exceptions_error_code', 'exceptions', ['error_code'])
|
||||
|
||||
def downgrade():
|
||||
op.drop_index('ix_exceptions_error_code')
|
||||
op.drop_table('exceptions')
|
Loading…
x
Reference in New Issue
Block a user