Get Started with Liquibase and XML

After you install Liquibase, get started with our tutorial and learn how Liquibase works.

With Liquibase, SQL statements [1] are declared as Liquibase changesets [2] in a changelog file [3].

Liquibase [4] then uses the changelog to apply the changesets to target databases [5].

In this tutorial, you will use an example changelog to apply two rounds of updates to an H2 database that is included with the Liquibase installation files.

Applying updates to the database

  1. Copy the Liquibase examples directory from the installation directory to another location on your machine.
  2. From a command line terminal, enter liquibase init start-h2 to start the example H2 database. The database console opens automatically in a browser on port 9090. The terminal includes the following output:

    ...
    Opening Database Console in Browser...
      Dev Web URL: http://192.168.56.1:8090/frame.jsp?jsessionid=d219f3d2012e078770943ef4c2cd0d11
      Integration Web URL: http://192.168.56.1:8090/frame.jsp?jsessionid=d7ab638787c99dbfe9c8103883bee278
  1. Open a new command line terminal and enter the following commands:
  2. cd <your path>/examples/xml
    liquibase update

    Liquibase displays the following output:

    Running Changeset: example-changelog.xml::1::your.name
    Running Changeset: example-changelog.xml::2::your.name
    Running Changeset: example-changelog.xml::3::your.name
    Liquibase command 'update' was executed successfully.
  1. From the database console, confirm that the PERSON and COMPANY tables were added successfully. You may have to click the "Refresh" button to see the changes.
  1. Using a text editor, open <your path>/examples/xml/example-changelog.xml and add the following changeset to the end of the file before the </databaseChangeLog> element:

    <changeSet author="your.name" id="4">
        <addColumn tableName="person">
            <column name="nickname" type="varchar(30)"/>
        </addColumn>
    </changeSet>
  2. Save and close example-changelog.xml.
  3. Enter the following command:

    liquibase update

    Liquibase displays the following output:

    Running Changeset: example-changelog.xml::4::your.name
    Liquibase command 'update' was executed successfully.
  4. Confirm the update by refreshing the database console and verifying that the NICKNAME column has been added to the PERSON table.

Next steps

  1. Introduction to Liquibase – Dive into Liquibase concepts
  2. Design Your Liquibase Project – Create a new Liquibase project folder and organize your changelogs
  3. Liquibase Database Tutorials – Configure Liquibase to work with your own database
  4. How to Apply Your Liquibase Pro License Key – If you use Liquibase Pro, activate your license