All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.changelog.20200427-add-info-to-paused-table.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
  - changeSet:
      id: add-timestamp-to-paused-table
      author: lpollo
      changes:
        - addColumn:
            tableName: paused
            columns:
              - column:
                  name: paused_by
                  type: varchar(255)
                  constraints:
                    nullable: true
              - column:
                  name: paused_at
                  type: timestamp(3)
                  constraints:
                    nullable: true
  # No rollback needed as liquibase can handle column deletions automatically




© 2015 - 2024 Weber Informatics LLC | Privacy Policy