<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd"
  logicalFilePath="db-changelog-000143-add-related-action-title-desc.xml">

  <changeSet author="appian" id="tag-000142">
    <tagDatabase tag="000142"/>
  </changeSet>

  <changeSet author="appian" id="000143.1.0">
    <comment>Create column for title in record_related_action_cfg table</comment>
    <addColumn tableName="record_related_action_cfg">
      <column name="title" type="${expressionStringType}"/>
    </addColumn>
  </changeSet>

  <changeSet author="appian" id="000143.1.1">
    <comment>Create column for is_static_title in record_related_action_cfg table</comment>
    <addColumn tableName="record_related_action_cfg">
      <column name="is_static_title" type="${booleanType}" defaultValueBoolean="true" valueBoolean="true"/>
    </addColumn>
  </changeSet>

  <changeSet author="appian" id="000143.1.2">
    <comment>Create column for description in record_related_action_cfg table</comment>
    <addColumn tableName="record_related_action_cfg">
      <column name="description" type="${expressionStringType}"/>
    </addColumn>
  </changeSet>

  <changeSet author="appian" id="000143.1.3">
    <comment>Create column for is_static_description in record_related_action_cfg table</comment>
    <addColumn tableName="record_related_action_cfg">
      <column name="is_static_description" type="${booleanType}" defaultValueBoolean="true" valueBoolean="true"/>
    </addColumn>
  </changeSet>

</databaseChangeLog>
