Search notes:

SQLcl: liquibase changelog-sync

SQL> liquibase changelog-sync -changelog-file controller.xml
SQL> select
  filename,
  to_char(dateexecuted, 'yyyy-mm-dd hh24:mi') exec_dt,
  exectype,
  description,
  author
from
   databasechangelog order by orderexecuted;

See also

The tables databasechangelog and databasechangelock are created if they don't already exist.
The SQLcl command liquibase.

Index