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

liquibase.changelogs.v1_21_0.schema-media.yml Maven / Gradle / Ivy

databaseChangeLog:
    - changeSet:
        id: 1.21.0-media
        author: GraviteeSource Team
        changes:
        - createTable:
            tableName: media
            columns:
                - column: {name: id, type: nvarchar(64), constraints: { nullable: false, primaryKey: true } }
                - column: {name: type, type: nvarchar(64), constraints: { nullable: false } }
                - column: {name: sub_type, type: nvarchar(128), constraints: { nullable: false } }
                - column: {name: file_name, type: nvarchar(128), constraints: { nullable: false } }
                - column: {name: size, type: int, constraints: { nullable: false } }
                - column: {name: data, type: longblob, constraints: { nullable: false } }
                - column: {name: created_at, type: timestamp(6), constraints: { nullable: false } }
                - column: {name: api, type: nvarchar(64), constraints: { nullable: true } }
                - column: {name: hash, type: nvarchar(64), constraints: { nullable: false, primaryKey: true } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy