-- generate the changelog table
create table {TABLE_NAME} (
    id numeric(20,0),
    applied_at character varying(25),
    version character varying(25),
    description character varying(255)
)