Skip to content

Commit 12a79f4

Browse files
committed
Add migration to drop the IATI files table.
1 parent 612c2af commit 12a79f4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
"""Remove IATIFile model.
2+
3+
Revision ID: 2c976b43b6d3
4+
Revises: 1245d2d05f24
5+
Create Date: 2026-02-16 10:54:29.611583
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
11+
12+
# revision identifiers, used by Alembic.
13+
revision = '2c976b43b6d3'
14+
down_revision = '1245d2d05f24'
15+
branch_labels = None
16+
depends_on = None
17+
18+
19+
def upgrade():
20+
op.drop_table('iati_files')
21+
22+
23+
def downgrade():
24+
pass

0 commit comments

Comments
 (0)