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

liquibase.changelogs.v3_12_0.schema-app-scope-settings.yml Maven / Gradle / Ivy

There is a newer version: 4.6.0-alpha.2
Show newest version
databaseChangeLog:
  - changeSet:
      id: 3.12.0-AppScopeSettings-Table
      author: GraviteeSource Team
      changes:

        ## scopes
        ###################
        - createTable:
            tableName: application_scope_settings
            columns:
              - column: { name: application_id, type: nvarchar(64), constraints: { nullable: false } }
              - column: { name: scope, type: nvarchar(255), constraints: { nullable: false } }
              - column: { name: is_default, type: boolean, constraints: { nullable: false }, defaultValueBoolean: false }
              - column: { name: scope_approval, type: integer, constraints: { nullable: true } }

        - createIndex:
            columns:
              - column:
                  name: application_id
            indexName: idx_ass_app_id
            tableName: application_scope_settings
            unique: false

        # Scopes
        ##############
        - addColumn:
            tableName: scopes
            columns:
              - column: { name: parameterized, type: boolean, constraints: { nullable: false }, defaultValueBoolean: false }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy