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

db.changelog.20190803-create-delivery-artifact-table.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
  - changeSet:
      id: create-delivery-artifact-table
      author: fletch
      changes:
        - createTable:
            tableName: delivery_artifact
            columns:
              - column:
                  name: uid
                  type: char(26)
                  constraints:
                    primaryKey: true
                    nullable: false
              - column:
                  name: name
                  type: varchar(255)
                  constraints:
                    nullable: false
              - column:
                  name: type
                  type: varchar(255)
                  constraints:
                    nullable: false
        - modifySql:
            dbms: mysql
            append:
              value: " engine innodb"
      rollback:
        - dropTable:
            tableName: delivery_artifact
  - changeSet:
      id: create-delivery-artifact-indicies
      author: fletch
      changes:
        - createIndex:
            indexName: delivery_artifact_name_type_idx
            tableName: delivery_artifact
            unique: true
            columns:
              - column:
                  name: name
              - column:
                  name: type




© 2015 - 2024 Weber Informatics LLC | Privacy Policy