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

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

There is a newer version: 3.9.2
Show newest version
databaseChangeLog:
    - changeSet:
        id: 1.22.0
        author: GraviteeSource Team
        changes:

        - addColumn:
            tableName: keys
            columns:
                - column:
                    name: paused
                    type: boolean

        - addColumn:
            tableName: subscriptions
            columns:
                - column:
                    name: paused_at
                    type: timestamp(6)

        - createTable:
            tableName: entrypoints
            columns:
                - column: {name: id, type: nvarchar(64), constraints: { nullable: false } }
                - column: {name: value, type: nvarchar(64), constraints: { nullable: false } }
                - column: {name: tags, type: nvarchar(64), constraints: { nullable: false } }

        - addPrimaryKey:
            constraintName: pk_entrypoints
            columnNames: id
            tableName: entrypoints




© 2015 - 2025 Weber Informatics LLC | Privacy Policy