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

db.changelog.20200928-add-notification-repo.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
  - changeSet:
      id: add-notification-repo
      author: emjburns
      changes:
        - createTable:
            tableName: notification
            columns:
              - column:
                  name: scope
                  type: varchar(255)
                  constraints:
                    primaryKey: true
                    nullable: false
              - column:
                  name: ref
                  type: varchar(255)
                  constraints:
                    primaryKey: true
                    nullable: false
              - column:
                  name: type
                  type: varchar(255)
                  constraints:
                    primaryKey: true
                    nullable: false
              - column:
                  name: time_detected
                  type: bigint
                  constraints:
                    nullable: false
              - column:
                  name: notify_at
                  type: bigint
                  constraints:
                    nullable: false
        - modifySql:
            dbms: mysql
            append:
              value: " engine innodb"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy