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

liquibase.changelogs.v3_12_0.schema-system-tasks.yml Maven / Gradle / Ivy

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

        ## scopes
        ###################
        - createTable:
            tableName: system_tasks
            columns:
              - column: { name: id, type: nvarchar(64), constraints: { nullable: false } }
              - column: { name: type, type: nvarchar(255), constraints: { nullable: false } }
              - column: { name: status, type: nvarchar(64), constraints: { nullable: false } }
              - column: { name: operation_id, type: nvarchar(64), constraints: { nullable: false } }
              - column: {name: created_at, type: timestamp(6), constraints: { nullable: true } }
              - column: {name: updated_at, type: timestamp(6), constraints: { nullable: true } }

        - addPrimaryKey:
            constraintName: pk_system_tasks
            columnNames: id
            tableName: system_tasks




© 2015 - 2024 Weber Informatics LLC | Privacy Policy