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

liquibase.changelogs.v1_20_0.schema.yml Maven / Gradle / Ivy

databaseChangeLog:
    - changeSet:
        id: 1.20.0
        author: GraviteeSource Team
        changes:
        - createTable:
            tableName: ${gravitee_prefix}api_headers
            columns:
                - column: {name: id, type: nvarchar(64), constraints: { nullable: false } }
                - column: {name: name, type: nvarchar(64), constraints: { nullable: false } }
                - column: {name: value, type: nvarchar(64), constraints: { nullable: false } }
                - column: {name: order, type: int, constraints: { nullable: true } }
                - column: {name: created_at, type: timestamp(6), constraints: { nullable: false } }
                - column: {name: updated_at, type: timestamp(6), constraints: { nullable: true } }

        - addPrimaryKey:
            constraintName: pk_${gravitee_prefix}api_headers
            columnNames: id
            tableName: ${gravitee_prefix}api_headers




© 2015 - 2025 Weber Informatics LLC | Privacy Policy