Support generated columns to be calculated from other columns. PostgreSQL currently implements only stored generated columns.
Example use case for stored generated columns:
ALTER TABLE people ADD height_inches_stored numeric GENERATED ALWAYS AS (height_cm / 2.54) STORED;