release: publish saldo 0.1.0

This commit is contained in:
2026-04-21 21:17:36 +02:00
commit 6f5e704739
95 changed files with 9196 additions and 0 deletions
@@ -0,0 +1,28 @@
"""add entry allocation target
Revision ID: 8d3f0c61bb21
Revises: 5f1c2e87a921
Create Date: 2026-04-20 16:10:00.000000
"""
from __future__ import annotations
from alembic import op
import sqlalchemy as sa
revision = "8d3f0c61bb21"
down_revision = "5f1c2e87a921"
branch_labels = None
depends_on = None
def upgrade() -> None:
op.add_column(
"entry",
sa.Column("is_allocation_target", sa.Boolean(), nullable=False, server_default=sa.false()),
)
def downgrade() -> None:
op.drop_column("entry", "is_allocation_target")