vbox funzionanti

This commit is contained in:
2026-03-19 11:41:10 +01:00
parent 538d6a6bec
commit b7f7c1f7c0
32 changed files with 6043 additions and 262 deletions
@@ -0,0 +1,28 @@
"""Add sent_last_sync_uid to mailboxes sincronizzazione cartella Sent IMAP
Revision ID: 0002
Revises: 0001
Create Date: 2026-03-19 09:00:00.000000
"""
from alembic import op
import sqlalchemy as sa
revision = "0002"
down_revision = "0001"
branch_labels = None
depends_on = None
def upgrade() -> None:
op.execute("""
ALTER TABLE mailboxes
ADD COLUMN IF NOT EXISTS sent_last_sync_uid BIGINT
""")
def downgrade() -> None:
op.execute("""
ALTER TABLE mailboxes
DROP COLUMN IF EXISTS sent_last_sync_uid
""")