{% extends "base.html" %} {% set section = "modules" %} {% block title %}Add column · {{ module.name }} — Pipekit{% endblock %} {% block content %}
Add column · {{ module.name }} appends to {{ module.dest_table }} ← back to module
{% if error %}
{{ error }}
{% endif %}
This runs ALTER TABLE … ADD COLUMN, which appends to the end of the table (existing rows preserved, new column NULL). The load is positional — add the matching expression as the last column of the source query, or the next run will misalign.
cancel
{% endblock %}