"""Question key points that smart-link into reading articles. Revision ID: l5a6b7c8d920 Revises: k4f5a6b7c819 """ from alembic import op revision = "l5a6b7c8d920" down_revision = "k4f5a6b7c819" branch_labels = None depends_on = None def upgrade(): op.execute("ALTER TABLE questions ADD COLUMN IF NOT EXISTS key_points JSON") def downgrade(): op.execute("ALTER TABLE questions DROP COLUMN IF EXISTS key_points")