add a non-null column to the Organization table

I need to add a non-null column to the Organization table. Normally, that would be a three step process in a single script:

  • Add the column as nullable

  • Execute needed update statements

  • Change the column to not null

I’m sure that could be done in the Liquibase YAML if building the script by hand (3 changesets) , but how should that be accomplished within the current pattern of having it determine the difference script to apply?

Postgres database