Skip to content

Commit 231ac65

Browse files
author
WA ANGIELSKI
committed
feat: Add Alembic migration script for an events table.
1 parent 7294f5a commit 231ac65

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""add events table
2+
3+
Revision ID: bc5180ba6081
4+
Revises: 001_escalations
5+
Create Date: 2026-02-24 00:19:36.374100
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
11+
12+
# revision identifiers, used by Alembic.
13+
revision = 'bc5180ba6081'
14+
down_revision = '001_escalations'
15+
branch_labels = None
16+
depends_on = None
17+
18+
19+
def upgrade() -> None:
20+
pass
21+
22+
23+
def downgrade() -> None:
24+
pass

0 commit comments

Comments
 (0)