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

db.changelog.db.changelog-hesperides-1.0.yaml Maven / Gradle / Ivy

There is a newer version: 4.1.6
Show newest version
databaseChangeLog:
  - changeSet:
      id: 1
      author: victorsalaun
      changes:
        - createTable:
            tableName: module
            columns:
              - column:
                  name: name
                  type: varchar(255)
                  constraints:
                    nullable: false
              - column:
                  name: version
                  type: varchar(255)
                  constraints:
                    nullable: false
              - column:
                  name: version_type
                  type: integer
                  constraints:
                    nullable: false
              - column:
                  name: version_id
                  type: bigint
        - addPrimaryKey:
            columnNames: name, version, version_type
            constraintName: pk_module
            schemaName: public
            tableName: module




© 2015 - 2024 Weber Informatics LLC | Privacy Policy