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

db.changelog.20210630-add-event-processing-queue.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
  - changeSet:
      id: add-event-processing-queue
      author: emjburns
      changes:
        - createTable:
            tableName: work_queue
            columns:
              - column:
                  name: uid
                  type: char(26)
                  constraints:
                    primaryKey: true
                    nullable: false
              - column:
                  name: type
                  type: char(50)
                  constraints:
                    nullable: false
              - column:
                  name: first_seen
                  type: timestamp(3)
                  constraints:
                    nullable: false
              - column:
                  name: json
                  type: json
                  constraints:
                    nullable: false
        - createIndex:
            indexName: work_queue_first_seen_type_idx
            tableName: work_queue
            columns:
              - column:
                  name: first_seen
              - column:
                  name: type




© 2015 - 2024 Weber Informatics LLC | Privacy Policy