db.changelog.20191213-initial-plugin-artifacts-schema.yml Maven / Gradle / Ivy
databaseChangeLog:
- changeSet:
id: create-plugin-artifacts-table
author: robzienert
changes:
- createTable:
tableName: plugin_artifacts
columns:
- column:
name: id
type: char(255)
constraints:
primaryKey: true
nullable: false
- column:
name: body
type: longtext
constraints:
nullable: false
- column:
name: created_at
type: bigint
constraints:
nullable: false
- column:
name: last_modified_at
type: bigint
constraints:
nullable: false
- column:
name: last_modified_by
type: varchar(255)
constraints:
nullable: false
- column:
name: is_deleted
type: boolean
defaultValueBoolean: false
constraints:
nullable: false
- modifySql:
dbms: mysql
append:
value: " engine innodb DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci"
rollback:
- dropTable:
tableName: plugin_artifacts
© 2015 - 2025 Weber Informatics LLC | Privacy Policy